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
diff options
context:
space:
mode:
authorJonathan Pryor <jonpryor@vt.edu>2010-09-16 20:23:55 +0400
committerJonathan Pryor <jonpryor@vt.edu>2010-09-16 20:31:11 +0400
commitdc3440293b9231224c0e33d32e8e309d12c21ec3 (patch)
tree1de93a5c68b12410ffe03fe4f2334411fb6e0610 /scripts
parentc7349ea2190187f5456566e13d7ce515bec4bcb5 (diff)
Make mdoc a 2.0 app, not a 4.0 app.
The problem is build sanity: it's possible to disable the 4.0 profile (--with-profile4=no) while not disabling documentation building (--with-mcs-docs=yes is the default). The result would be a 4.0-less build, and thus no mdoc, and thus no mdoc to assemble the documentation, and thus a build break as we attempted to use an app during the build which didn't exist. Oops. mdoc doesn't need to be a 4.0 app anyway...
Diffstat (limited to 'scripts')
-rw-r--r--scripts/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.am b/scripts/Makefile.am
index c15e86eddf5..e95e2a76c7d 100644
--- a/scripts/Makefile.am
+++ b/scripts/Makefile.am
@@ -56,6 +56,7 @@ scripts_2_0 = \
csharp2$(SCRIPT_SUFFIX) \
gacutil2$(SCRIPT_SUFFIX) \
gmcs$(SCRIPT_SUFFIX) \
+ mdoc$(SCRIPT_SUFFIX) \
monop2$(SCRIPT_SUFFIX) \
resgen2$(SCRIPT_SUFFIX) \
wsdl2$(SCRIPT_SUFFIX)
@@ -68,7 +69,6 @@ scripts_4_0 = \
installvst$(SCRIPT_SUFFIX) \
genxs$(SCRIPT_SUFFIX) \
macpack$(SCRIPT_SUFFIX) \
- mdoc$(SCRIPT_SUFFIX) \
mono-cil-strip$(SCRIPT_SUFFIX) \
prj2make$(SCRIPT_SUFFIX) \
soapsuds$(SCRIPT_SUFFIX) \