- Re-order link lines so the -o option always comes right after the
command name.
+ - Add /sw/bin to the default execution PATH on Mac OS X.
+
From Gary Oberbrunner:
- Add an Environment.Dump() method to print the contents of a
- On Windows, preserve the external environment's %SYSTEMDRIVE%
variable, too.
+ From Asfand Yar Qazi:
+
+ - Add /opt/bin to the default execution PATH on all POSIX platforms.
+
From Kevin Quick:
- Fix the Builder name returned from ListBuilders and other instances
def generate(env):
posix.generate(env)
env['SHLIBSUFFIX'] = '.dylib'
+ env['ENV']['PATH'] = env['ENV']['PATH'] + ':/sw/bin'
if not env.has_key('ENV'):
env['ENV'] = {}
- env['ENV']['PATH'] = '/usr/local/bin:/bin:/usr/bin'
+ env['ENV']['PATH'] = '/usr/local/bin:/bin:/usr/bin:/opt/bin'
env['OBJPREFIX'] = ''
env['OBJSUFFIX'] = '.o'
env['SHOBJPREFIX'] = '$OBJPREFIX'