Merge pull request #189 from Travis-Snoozy/master
Make acprep use "str.split" not "string.split"
This commit is contained in:
commit
900af57331
1 changed files with 1 additions and 1 deletions
2
acprep
2
acprep
|
|
@ -248,7 +248,7 @@ class PrepareBuild(CommandLineApp):
|
||||||
self.envvars[varname] = os.environ[varname]
|
self.envvars[varname] = os.environ[varname]
|
||||||
|
|
||||||
if varname.endswith('FLAGS'):
|
if varname.endswith('FLAGS'):
|
||||||
self.__dict__[varname] = string.split(os.environ[varname])
|
self.__dict__[varname] = str.split(os.environ[varname])
|
||||||
self.envvars[varname] = ''
|
self.envvars[varname] = ''
|
||||||
|
|
||||||
# If ~/Products/ or build/ exists, use them instead of the source tree
|
# If ~/Products/ or build/ exists, use them instead of the source tree
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue