From 12684554166fbb21c18a6b2f0d19e07d5d8e5e1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Laval?= Date: Wed, 12 Jun 2013 16:15:32 -0400 Subject: [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 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v1.2.3