diff options
author | Eike Ziller <eike.ziller@digia.com> | 2013-06-20 13:17:49 +0200 |
---|---|---|
committer | Eike Ziller <eike.ziller@digia.com> | 2013-06-20 15:32:17 +0200 |
commit | 4d5ffd4e9108ab87b1f4548bc3cbf768992c67f9 (patch) | |
tree | b7685b536f63e5eaaaf8bd019478f81376d12ff9 /qtcreator.pro | |
parent | b2eab46164bf9ece5af8156e5c31ecc46e28433a (diff) | |
download | qt-creator-4d5ffd4e9108ab87b1f4548bc3cbf768992c67f9.tar.gz |
Installer/Mac: don't add fancy stuff into the installer app name.
The file name pattern that is used for win/lin should only be used for
the resulting disk image, not the installer app itself
Change-Id: Ia0b41fd379faf093af71dc526f32a768552d5e2f
Reviewed-by: Eike Ziller <eike.ziller@digia.com>
Diffstat (limited to 'qtcreator.pro')
-rw-r--r-- | qtcreator.pro | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/qtcreator.pro b/qtcreator.pro index 67eada2cc2..94c15ce4d2 100644 --- a/qtcreator.pro +++ b/qtcreator.pro @@ -58,7 +58,8 @@ else: PLATFORM = "unknown" PATTERN = $${PLATFORM}$(INSTALL_EDITION)-$${QTCREATOR_VERSION}$(INSTALL_POSTFIX) -INSTALLER_NAME = "qt-creator-$${PATTERN}" +macx:INSTALLER_NAME = "qt-creator-$${QTCREATOR_VERSION}" +else:INSTALLER_NAME = "qt-creator-$${PATTERN}" macx { APPBUNDLE = "$$OUT_PWD/bin/Qt Creator.app" |