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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Mein <mein@cs.umn.edu>2007-12-06 00:46:34 +0300
committerKent Mein <mein@cs.umn.edu>2007-12-06 00:46:34 +0300
commitb0c01a414b0915ae73a704e4c676ab985be82a04 (patch)
tree1d0fdddfea56bef08d72a3c476f2149f821c85f3 /release
parent5d0c829194ed05fc1d855253b37f1672bfd2b7fc (diff)
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
Diffstat (limited to 'release')
-rw-r--r--release/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/release/Makefile b/release/Makefile
index daba1cce754..f608accf2b0 100644
--- a/release/Makefile
+++ b/release/Makefile
@@ -44,7 +44,7 @@ ifeq ($(OS),beos)
EXT1=".zip"
COMPRESS=""
EXT2=""
- NOPLUGINS="true"
+ NOPLUGINS?=true
endif
ifeq ($(OS),$(findstring $(OS), "freebsd irix linux openbsd solaris"))
@@ -57,7 +57,7 @@ ifeq ($(OS),$(findstring $(OS), "freebsd irix linux openbsd solaris"))
EXT2=".bz2"
ifeq ($(OS), solaris)
ifeq ($(CPU), i386)
- NOPLUGINS=true
+ NOPLUGINS?=true
endif
endif
endif
@@ -67,8 +67,8 @@ ifeq ($(OS),windows)
TARFLAGS="-r9"
EXT0=".exe"
EXT1=".zip"
- NOPLUGINS="true"
- NOSTRIP="true"
+ NOPLUGINS?=true
+ NOSTRIP?=true
endif
ifeq ($(OS),darwin)