whoops, win64 -> win_amd64

This commit is contained in:
David Rose 2012-10-09 16:43:26 +00:00
parent 5d6d2d850c
commit b9ba7b1b2e

View File

@ -1084,7 +1084,7 @@ class Installer:
# Some global info # Some global info
print >>nsi, 'Name "%s"' % self.fullname print >>nsi, 'Name "%s"' % self.fullname
print >>nsi, 'OutFile "%s"' % output.toOsSpecific() print >>nsi, 'OutFile "%s"' % output.toOsSpecific()
if platform == 'win64': if platform == 'win_amd64':
print >>nsi, 'InstallDir "$PROGRAMFILES64\\%s"' % self.fullname print >>nsi, 'InstallDir "$PROGRAMFILES64\\%s"' % self.fullname
else: else:
print >>nsi, 'InstallDir "$PROGRAMFILES\\%s"' % self.fullname print >>nsi, 'InstallDir "$PROGRAMFILES\\%s"' % self.fullname