copy STRIP env var into scons env var
TODO: an option to just copy everything, which is apparently needed on some platforms
This commit is contained in:
parent
834e966842
commit
4f52d34a9d
@ -134,7 +134,7 @@ if tool:
|
||||
env['ENV']['PATH'] = "{0}:{1}".format(sdlconfigpath, env['ENV']['PATH'])
|
||||
|
||||
#copy environment variables because scons doesn't do this by default
|
||||
for var in ["CC","CXX","LD","LIBPATH"]:
|
||||
for var in ["CC","CXX","LD","LIBPATH","STRIP"]:
|
||||
if var in os.environ:
|
||||
env[var] = os.environ[var]
|
||||
print "copying environment variable {0}={1!r}".format(var,os.environ[var])
|
||||
|
Reference in New Issue
Block a user