[Bf-committers] cygwin 'make release' solved

Tanner Jotblad tannerjotblad at gmail.com
Wed Dec 5 21:34:35 CET 2007


Hi, I noted in November that make release for cygwin didn't work, on 
looking at the /release/Makefile, well, I fixed it to work.
It sets NOPLUGINS to "true" if it's on windows, but in the plugins area 
it checks for true not "true", so it doesn't find it and tries to 
compile the plugins (which I guess it can't do).
so anyway, here's the patch:

Index: release/Makefile
===================================================================
--- release/Makefile    (revision 12797)
+++ release/Makefile    (working copy)
@@ -140,7 +140,7 @@
     fi
     endif
 
-ifneq ($(NOPLUGINS),true)
+ifneq ($(NOPLUGINS),"true")
     @echo "----> Copy and compile plugins"
     @cp -r plugins $(DISTDIR)/plugins
     @mkdir -p $(DISTDIR)/plugins/include

<end patch>
this has been bugging me for awhile, so if people can test it and then 
hopefully commit it, I'd be much obliged. Thanks...


More information about the Bf-committers mailing list