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:
authorChris Want <cwant@ualberta.ca>2003-05-07 18:47:49 +0400
committerChris Want <cwant@ualberta.ca>2003-05-07 18:47:49 +0400
commitcb2d8c7225d531070072feca09513f6c71e261e7 (patch)
treef84c2e7eed319976c1d9c38a560871387bf3d68c /release
parentd279fc6c4588990a28d55e6db9791e3d125b564b (diff)
A fix to the release Makefile so that strip happens *after* copy.
Please test!
Diffstat (limited to 'release')
-rw-r--r--release/Makefile16
1 files changed, 8 insertions, 8 deletions
diff --git a/release/Makefile b/release/Makefile
index 89224ef7c4a..ae74da6d85b 100644
--- a/release/Makefile
+++ b/release/Makefile
@@ -104,14 +104,6 @@ install: package
#@cp -r python $(DISTDIR)/python
#@rm -fr $(DISTDIR)/python/CVS
- ifneq ($(NOSTRIP),true)
- @echo "----> Strip blender executable"
- ifeq ($(OS),darwin)
- @strip -x $(OCGDIR)/bin/blender$(EXT0)/Contents/MacOS/blender
- else
- @strip -x $(DISTDIR)/blender$(EXT0)
- endif
- endif
@echo "----> Copy blender$(EXT0) executable"
ifeq ($(TYPE),-static)
@cp $(OCGDIR)/bin/blenderstatic$(EXT0) $(DISTDIR)/blender$(EXT0)
@@ -132,6 +124,14 @@ install: package
@rm -fr $(DISTDIR)/plugins/CVS $(DISTDIR)/plugins/*/CVS \
$(DISTDIR)/plugins/*/*.o
endif
+ ifneq ($(NOSTRIP),true)
+ @echo "----> Strip blender executable"
+ ifeq ($(OS),darwin)
+ @strip -x $(OCGDIR)/bin/blender$(EXT0)/Contents/MacOS/blender
+ else
+ @strip -x $(DISTDIR)/blender$(EXT0)
+ endif
+ endif
@[ ! -x $(CONFIG_GUESS)/specific.sh ] || (\
echo "**--> Execute specific.sh in $(CONFIG_GUESS)/" && \
cd $(CONFIG_GUESS) && ./specific.sh )