Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2016-04-04 14:42:47 +0300
committerMarek Safar <marek.safar@gmail.com>2016-04-04 14:48:44 +0300
commitaeccd22792f34fb77c340180174f73f6c3270200 (patch)
tree21343b9a17eb47414f28daba4a29d2f7b959b6ec /docs
parent3d180029fb2875865d51d03269cc71999e008104 (diff)
[build] Change the way how mcs references are passed to compiler to always use full path.
One of csc prerequisites because csc uses -lib as path which is considered after RuntimeEnvironment.GetRuntimeDirectory which makes -lib useless
Diffstat (limited to 'docs')
-rw-r--r--docs/docs.make4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/docs.make b/docs/docs.make
index c19ba5c3375..f0b97990356 100644
--- a/docs/docs.make
+++ b/docs/docs.make
@@ -13,10 +13,10 @@ ASSEMBLED_DOCS = \
monoapi.tree monoapi.zip
convert.exe: $(srcdir)/convert.cs AgilityPack.dll
- $(CSCOMPILE) -r:System.Xml.dll -out:$@ $< -r:AgilityPack.dll
+ $(CSCOMPILE) -r:$(topdir)/class/lib/$(PROFILE)/System.Xml.dll -out:$@ $< -r:AgilityPack.dll
AgilityPack.dll:
- $(CSCOMPILE) -r:System.dll -r:System.Xml.dll -target:library -out:$@ $(srcdir)/HtmlAgilityPack/*.cs
+ $(CSCOMPILE) -r:$(topdir)/class/lib/$(PROFILE)/System.dll -r:$(topdir)/class/lib/$(PROFILE)/System.Xml.dll -target:library -out:$@ $(srcdir)/HtmlAgilityPack/*.cs
monoapi.zip: monoapi.tree
@test -f $@ || { rm -f $< && $(MAKE) $<; }