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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2013-11-23 09:50:19 +0400
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2013-11-23 10:12:02 +0400
commit2cb63486a9cedf79aa4e10a26338acf8d7d7e94c (patch)
treed6d8faed84d5e79c9153efcef8b3ecb47c22a8d1 /intern/locale
parent1d3309831404d0e0a6dca0bafb8260dbe77f2afa (diff)
Fix scons build error compiling 32 bit OS X built on 64 bit.
Diffstat (limited to 'intern/locale')
-rw-r--r--intern/locale/SConscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/locale/SConscript b/intern/locale/SConscript
index 42941e2105f..4136ac8237d 100644
--- a/intern/locale/SConscript
+++ b/intern/locale/SConscript
@@ -58,9 +58,9 @@ if env['WITH_BF_INTERNATIONAL']:
os.makedirs(build_dir)
msgfmt_tool = env.Clone()
+ msgfmt_tool.Append(LINKFLAGS = env['PLATFORM_LINKFLAGS'])
+
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 these dependencies
msgfmt_target = msgfmt_tool.Program(target = targetpath, source = ['msgfmt.cc'])