From 4563c1e68eec631d5204ef4c59e7c45836239357 Mon Sep 17 00:00:00 2001 From: David Rose Date: Mon, 17 Sep 2012 16:11:33 +0000 Subject: [PATCH] win64 into PROGRAMFILES64 --- direct/src/p3d/DeploymentTools.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/direct/src/p3d/DeploymentTools.py b/direct/src/p3d/DeploymentTools.py index 0d746dbd97..c652be5d71 100644 --- a/direct/src/p3d/DeploymentTools.py +++ b/direct/src/p3d/DeploymentTools.py @@ -1084,7 +1084,10 @@ class Installer: # Some global info print >>nsi, 'Name "%s"' % self.fullname print >>nsi, 'OutFile "%s"' % output.toOsSpecific() - print >>nsi, 'InstallDir "$PROGRAMFILES\\%s"' % self.fullname + if platform == 'win64': + print >>nsi, 'InstallDir "$PROGRAMFILES64\\%s"' % self.fullname + else: + print >>nsi, 'InstallDir "$PROGRAMFILES\\%s"' % self.fullname print >>nsi, 'SetCompress auto' print >>nsi, 'SetCompressor lzma' print >>nsi, 'ShowInstDetails nevershow'