mirror of
https://github.com/panda3d/panda3d.git
synced 2026-02-19 21:59:31 -06:00
makepanda: fix error concatenating platform
[skip ci]
This commit is contained in:
@@ -473,7 +473,7 @@ else:
|
||||
target_arch = GetTargetArch()
|
||||
if target_arch == 'amd64':
|
||||
target_arch = 'x86_64'
|
||||
PLATFORM = '{0}-{1}' % (target, target_arch)
|
||||
PLATFORM = '{0}-{1}'.format(target, target_arch)
|
||||
|
||||
|
||||
print("Platform: %s" % PLATFORM)
|
||||
|
||||
Reference in New Issue
Block a user