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-12 22:12:25 +0400
committerStefan Gartner <stefang@aon.at>2003-05-12 22:12:25 +0400
commiteca049b177e08a0b8a182cc373e2ae225f7f8a11 (patch)
treecabf6402c17f3555afa40d4e56b1bddabd295d70 /source/darwin
parent936f7541c47298c326f34548d4142005d5a478e1 (diff)
store locales, .Blanguage, and .bfont.ttf inside of Resources folder of
application bundle on OS X
Diffstat (limited to 'source/darwin')
-rw-r--r--source/darwin/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/source/darwin/Makefile b/source/darwin/Makefile
index 9ffc42d6beb..13ce607509a 100644
--- a/source/darwin/Makefile
+++ b/source/darwin/Makefile
@@ -1,5 +1,5 @@
#
-# $Id: Makefile,v 1.5 2003/02/09 18:32:55 sgefant Exp $
+# $Id: Makefile,v 1.6 2003/05/09 20:20:40 sgefant Exp $
#
# ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
#
@@ -46,7 +46,10 @@ all::
@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
+ @cp -R ../../bin/.blender/locale $(DIR)/bin/$(APPLICATION).app/Contents/Resources
+ @echo "---> copying .Blanguages and .bfont.ttf"
+ @cp ../../bin/.blender/.Blanguages $(DIR)/bin/$(APPLICATION).app/Contents/Resources
+ @cp ../../bin/.blender/.bfont.ttf $(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 {} \;