From a05e90f5fca40aeb0fa14211edbd80416ffc2cb3 Mon Sep 17 00:00:00 2001 From: Jens Verwiebe Date: Sat, 16 Nov 2013 21:46:35 +0100 Subject: OSX/scons: fix msgfmt binary linking and locale files distribution --- intern/locale/SConscript | 3 +++ 1 file changed, 3 insertions(+) (limited to 'intern/locale') 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() -- cgit v1.2.3