mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-21 11:31:07 +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)
|
||||
|
||||
env = self.environment
|
||||
env['PATH'] = env['PATH'] \
|
||||
+ os.pathsep + '/Applications/CMake.app/Contents/bin' \
|
||||
+ os.pathsep + state.bin_path
|
||||
env['PATH'] = state.bin_path + os.pathsep + env['PATH'] \
|
||||
+ os.pathsep + '/Applications/CMake.app/Contents/bin'
|
||||
|
||||
if state.xcode:
|
||||
return
|
||||
|
|
Loading…
Reference in a new issue