[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [12800] trunk/blender/release/Makefile: Fixed up NOPLUGINS and NOSTRIP so they are hints to make release instead of

Kent Mein mein at cs.umn.edu
Wed Dec 5 22:46:34 CET 2007


Revision: 12800
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=12800
Author:   sirdude
Date:     2007-12-05 22:46:34 +0100 (Wed, 05 Dec 2007)

Log Message:
-----------
Fixed up NOPLUGINS and NOSTRIP so they are hints to make release instead of
hardcoded.  Also removed ""'s from around the defines so they were more like
all of the others.

Thanks to Tanner Jotblad for pointing this out...

Kent

Modified Paths:
--------------
    trunk/blender/release/Makefile

Modified: trunk/blender/release/Makefile
===================================================================
--- trunk/blender/release/Makefile	2007-12-05 20:54:26 UTC (rev 12799)
+++ trunk/blender/release/Makefile	2007-12-05 21:46:34 UTC (rev 12800)
@@ -44,7 +44,7 @@
    EXT1=".zip"
    COMPRESS=""
    EXT2=""
-   NOPLUGINS="true"
+   NOPLUGINS?=true
 endif
 
 ifeq ($(OS),$(findstring $(OS), "freebsd irix linux openbsd solaris"))
@@ -57,7 +57,7 @@
    EXT2=".bz2"
    ifeq ($(OS), solaris)
      ifeq ($(CPU), i386)
-       NOPLUGINS=true
+       NOPLUGINS?=true
      endif
    endif
 endif
@@ -67,8 +67,8 @@
    TARFLAGS="-r9"
    EXT0=".exe"
    EXT1=".zip"
-   NOPLUGINS="true"
-   NOSTRIP="true"
+   NOPLUGINS?=true
+   NOSTRIP?=true
 endif
 
 ifeq ($(OS),darwin)





More information about the Bf-blender-cvs mailing list