From 14f96f65f53f2a35e8e28a1dcb36cd2b361ba4b9 Mon Sep 17 00:00:00 2001 From: Marek Safar Date: Wed, 16 Mar 2016 15:42:55 +0100 Subject: [PATCH] [build] Add missing explicit references in docs --- docs/docs.make | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs.make b/docs/docs.make index 4f2d964e5b9..c19ba5c3375 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) -out:$@ $< -r:AgilityPack.dll + $(CSCOMPILE) -r:System.Xml.dll -out:$@ $< -r:AgilityPack.dll AgilityPack.dll: - $(CSCOMPILE) -target:library -out:$@ $(srcdir)/HtmlAgilityPack/*.cs + $(CSCOMPILE) -r:System.dll -r:System.Xml.dll -target:library -out:$@ $(srcdir)/HtmlAgilityPack/*.cs monoapi.zip: monoapi.tree @test -f $@ || { rm -f $< && $(MAKE) $<; } -- 2.25.1