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:
authorJens Verwiebe <info@jensverwiebe.de>2013-11-17 00:46:35 +0400
committerJens Verwiebe <info@jensverwiebe.de>2013-11-17 00:46:55 +0400
commita05e90f5fca40aeb0fa14211edbd80416ffc2cb3 (patch)
tree0ac5c6661c8dc39fa4ea4a93cb25061bc2f7e7c7 /intern/locale
parentb0ff255b55388de58925c2cd4974739c9592a036 (diff)
OSX/scons: fix msgfmt binary linking and locale files distribution
Diffstat (limited to 'intern/locale')
-rw-r--r--intern/locale/SConscript3
1 files changed, 3 insertions, 0 deletions
diff --git a/intern/locale/SConscript b/intern/locale/SConscript
index 38161b48ff0..3fb3e1f8993 100644
--- a/intern/locale/SConscript
+++ b/intern/locale/SConscript
@@ -59,6 +59,9 @@ if env['WITH_BF_INTERNATIONAL']:
msgfmt_tool = env.Clone()
targetpath = root_build_dir + '/msgfmt'
+ if env['OURPLATFORM'] == 'darwin':
+ msgfmt_tool.Replace( LINKFLAGS = '/usr/lib/libgcc_s.1.dylib /usr/lib/libstdc++.6.dylib /usr/lib/libSystem.B.dylib') # only need this dependencies
+
msgfmt_target = msgfmt_tool.Program(target = targetpath, source = ['msgfmt.cc'])
locale = env.Clone()