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

github.com/xamarin/macdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJérémie Laval <jeremie.laval@gmail.com>2013-06-13 00:15:32 +0400
committerJérémie Laval <jeremie.laval@gmail.com>2013-06-13 00:17:05 +0400
commit12684554166fbb21c18a6b2f0d19e07d5d8e5e1a (patch)
tree1470b0d610d60c82180eaa0098c50ba21cdf22d5
parenteab22f0e69b7168631b63b1469005fe5b3ee13cb (diff)
[macdoc] Fix logging line in Makefile.
That line was working fine before because the Makefile was incorrectly using the system X.S to build, but since we reverted back to use the just compiled X.S the command line changed to include a '&&' token. Since the echo command doesn't correctly escape the variable expansion, the second command (mdtool build) is ran and later on destroyed by the rm -rf, that is not sufficient though to trigger the next (and correct) mdtool build from properly recreating the .app
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d090d79..afe3327 100644
--- a/Makefile
+++ b/Makefile
@@ -22,7 +22,7 @@ all: monomac macdoc monodoc
monomac: $(MONO_MAC_DLL)
macdoc: monomac
- @echo "MDTOOL_BUILD: " $(MDTOOL_BUILD)
+ @echo "MDTOOL_BUILD: $(MDTOOL_BUILD)"
rm -Rf $(MACDOC_APP)
$(MDTOOL_BUILD)