mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-21 19:41:15 +00:00
aedi: prepend prefix bin path to environment variable
This commit is contained in:
parent
2e58efc866
commit
34c9aa6e53
1 changed files with 2 additions and 3 deletions
|
@ -80,9 +80,8 @@ class BuildTarget(Target):
|
||||||
os.makedirs(state.build_path, exist_ok=True)
|
os.makedirs(state.build_path, exist_ok=True)
|
||||||
|
|
||||||
env = self.environment
|
env = self.environment
|
||||||
env['PATH'] = env['PATH'] \
|
env['PATH'] = state.bin_path + os.pathsep + env['PATH'] \
|
||||||
+ os.pathsep + '/Applications/CMake.app/Contents/bin' \
|
+ os.pathsep + '/Applications/CMake.app/Contents/bin'
|
||||||
+ os.pathsep + state.bin_path
|
|
||||||
|
|
||||||
if state.xcode:
|
if state.xcode:
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in a new issue