makepanda: fix build error with maya2008 on macOS

This commit is contained in:
rdb 2017-12-19 23:37:36 +01:00
parent 9dcfcbf5fa
commit 6faaabe034

View File

@ -6370,6 +6370,8 @@ for VER in MAYAVERSIONS:
continue continue
elif GetTarget() == 'darwin' and int(VNUM) >= 2009: elif GetTarget() == 'darwin' and int(VNUM) >= 2009:
ARCH_OPTS = ['NOARCH:PPC'] ARCH_OPTS = ['NOARCH:PPC']
elif GetTarget() == 'darwin':
ARCH_OPTS = ['NOARCH:X86_64']
else: else:
ARCH_OPTS = [] ARCH_OPTS = []