diff options
Diffstat (limited to 'rbutil/rbutilqt/deploy-release.py')
-rwxr-xr-x | rbutil/rbutilqt/deploy-release.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rbutil/rbutilqt/deploy-release.py b/rbutil/rbutilqt/deploy-release.py index c2071a29d7..f37535ea69 100755 --- a/rbutil/rbutilqt/deploy-release.py +++ b/rbutil/rbutilqt/deploy-release.py | |||
@@ -63,15 +63,15 @@ except ImportError: | |||
63 | # == Global stuff == | 63 | # == Global stuff == |
64 | # Windows nees some special treatment. Differentiate between program name | 64 | # Windows nees some special treatment. Differentiate between program name |
65 | # and executable filename. | 65 | # and executable filename. |
66 | program = "rbutilqt" | 66 | program = "RockboxUtility" |
67 | project = "rbutil/rbutilqt/rbutilqt.pro" | 67 | project = "rbutil/rbutilqt/rbutilqt.pro" |
68 | environment = os.environ | 68 | environment = os.environ |
69 | make = "make" | 69 | make = "make" |
70 | if sys.platform == "win32": | 70 | if sys.platform == "win32": |
71 | progexe = "Release/rbutilqt.exe" | 71 | progexe = "Release/" + program + ".exe" |
72 | make = "mingw32-make" | 72 | make = "mingw32-make" |
73 | elif sys.platform == "darwin": | 73 | elif sys.platform == "darwin": |
74 | progexe = "rbutilqt.app" | 74 | progexe = program + ".app" |
75 | # OS X 10.6 defaults to gcc 4.2. Building universal binaries that are | 75 | # OS X 10.6 defaults to gcc 4.2. Building universal binaries that are |
76 | # compatible with 10.4 requires using gcc-4.0. | 76 | # compatible with 10.4 requires using gcc-4.0. |
77 | if not "QMAKESPEC" in environment: | 77 | if not "QMAKESPEC" in environment: |