mirror of
https://github.com/panda3d/panda3d.git
synced 2025-09-29 08:15:18 -04:00
makepanda: fix error concatenating platform
[skip ci]
This commit is contained in:
parent
7132d09e7e
commit
eed0834ccb
@ -473,7 +473,7 @@ else:
|
|||||||
target_arch = GetTargetArch()
|
target_arch = GetTargetArch()
|
||||||
if target_arch == 'amd64':
|
if target_arch == 'amd64':
|
||||||
target_arch = 'x86_64'
|
target_arch = 'x86_64'
|
||||||
PLATFORM = '{0}-{1}' % (target, target_arch)
|
PLATFORM = '{0}-{1}'.format(target, target_arch)
|
||||||
|
|
||||||
|
|
||||||
print("Platform: %s" % PLATFORM)
|
print("Platform: %s" % PLATFORM)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user