1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2025-01-19 08:52:34 +01:00

Fix another arch use.

This commit is contained in:
David Anderson 2020-08-19 15:03:47 -07:00
parent eec8f956e0
commit 644dfe50a7
2 changed files with 2 additions and 2 deletions

View File

@ -426,7 +426,7 @@ class MMSConfig(object):
elif compiler.target.platform == 'mac':
if sdk.name in ['sdk2013', 'bms']:
lib_folder = os.path.join(sdk.path, 'lib', 'public', 'osx32')
elif arch == 'x86_64':
elif compiler.target.arch == 'x86_64':
lib_folder = os.path.join(sdk.path, 'lib', 'osx64')
else:
lib_folder = os.path.join(sdk.path, 'lib', 'mac')

View File

@ -1 +1 @@
Aug 19, 2020
Aug 19, 2020 #2