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:
authorKent Mein <mein@cs.umn.edu>2004-03-18 18:06:48 +0300
committerKent Mein <mein@cs.umn.edu>2004-03-18 18:06:48 +0300
commit60955da36d5f731b0e30552442bee255e3d66a23 (patch)
treea52ff2deeff180b8547ee3043e9b3ed3455cc01a /SConstruct
parent1f61dc31da376d7cd66d9487241b028e82e39d29 (diff)
Douglas Bischoff's fix for OSX (removing the spaces from link_env.Append
link_env.Append (LINKFLAGS=' -framework Carbon') is now link_env.Append (LINKFLAGS='-framework') link_env.Append (LINKFLAGS='Carbon') Kent
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct9
1 files changed, 6 insertions, 3 deletions
diff --git a/SConstruct b/SConstruct
index 34b4a7ce811..0e1f0fce27b 100644
--- a/SConstruct
+++ b/SConstruct
@@ -931,10 +931,13 @@ if user_options_dict['USE_OPENAL'] == 1:
link_env.Append (LIBS=user_options_dict['PLATFORM_LIBS'])
link_env.Append (LIBPATH=user_options_dict['PLATFORM_LIBPATH'])
if sys.platform == 'darwin':
- link_env.Append (LINKFLAGS=' -framework Carbon')
- link_env.Append (LINKFLAGS=' -framework AGL')
+ link_env.Append (LINKFLAGS='-framework')
+ link_env.Append (LINKFLAGS='Carbon')
+ link_env.Append (LINKFLAGS='-framework')
+ link_env.Append (LINKFLAGS='AGL')
if user_options_dict['USE_QUICKTIME'] == 1:
- link_env.Append (LINKFLAGS=' -framework QuickTime')
+ link_env.Append (LINKFLAGS='-framework')
+ link_env.Append (LINKFLAGS='QuickTime')
else:
link_env.Append (LINKFLAGS=user_options_dict['PLATFORM_LINKFLAGS'])