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:
authorStefan Gartner <stefang@aon.at>2003-05-10 00:20:40 +0400
committerStefan Gartner <stefang@aon.at>2003-05-10 00:20:40 +0400
commit99bd02a98bcde69de1dfe535144e2594240591b7 (patch)
tree15f7c042c6e425fd7e8c8a42a9e2533d473fd61a /source/darwin
parent229265812433b0af48ac6892762f1df194df2805 (diff)
store message catalogs in Resources folder of the application bundle on OS
X. Opening a file selector is no longer needed in order to switch the language for the first time; apparently gettext wasn't too happy about relative paths.
Diffstat (limited to 'source/darwin')
-rw-r--r--source/darwin/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/source/darwin/Makefile b/source/darwin/Makefile
index c65b4d82bd8..9ffc42d6beb 100644
--- a/source/darwin/Makefile
+++ b/source/darwin/Makefile
@@ -1,5 +1,5 @@
#
-# $Id: Makefile,v 1.4 2003/02/02 17:28:15 sgefant Exp $
+# $Id: Makefile,v 1.5 2003/02/09 18:32:55 sgefant Exp $
#
# ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
#
@@ -44,6 +44,10 @@ all::
@cp $(DIR)/bin/$(APPLICATION) $(DIR)/bin/$(APPLICATION).app/Contents/MacOS/
@echo "---> adding excutable attributes"
@chmod +x $(DIR)/bin/$(APPLICATION).app/Contents/MacOS/$(APPLICATION)
+ifeq ($(APPLICATION), blender)
+ @echo "---> copying message files"
+ @cp -R ../../bin/message $(DIR)/bin/$(APPLICATION).app/Contents/Resources
+endif
@echo "---> removing CVS directories and Mac hidden files from distribution"
@find $(DIR)/bin/$(APPLICATION).app -name CVS -prune -exec rm -rf {} \;
@find $(DIR)/bin/$(APPLICATION).app -name .DS_Store -exec rm -f {} \;