diff options
author | Oswald Buddenhagen <oswald.buddenhagen@digia.com> | 2014-09-25 19:06:21 +0200 |
---|---|---|
committer | Oswald Buddenhagen <oswald.buddenhagen@digia.com> | 2014-10-01 10:56:45 +0200 |
commit | 9fb663e57fa2859682d68928f79d5fadeb03a478 (patch) | |
tree | fb1c6ba7f544f61968f1016872d6240707238578 /qmake | |
parent | d6444b2e56927f664635980ba0599cef43fa2d32 (diff) | |
download | qtbase-9fb663e57fa2859682d68928f79d5fadeb03a478.tar.gz qtbase-9fb663e57fa2859682d68928f79d5fadeb03a478.tar.bz2 qtbase-9fb663e57fa2859682d68928f79d5fadeb03a478.zip |
fix omission of QMAKE_PKGINFO from sliced bundles
Change-Id: Iff2c6686eae47e09fa6d046c60523aaf79aadfd5
Reviewed-by: Morten Johan Sørvig <morten.sorvig@digia.com>
Diffstat (limited to 'qmake')
-rw-r--r-- | qmake/generators/unix/unixmake2.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qmake/generators/unix/unixmake2.cpp b/qmake/generators/unix/unixmake2.cpp index d8700b3ba0..3ea2961c92 100644 --- a/qmake/generators/unix/unixmake2.cpp +++ b/qmake/generators/unix/unixmake2.cpp @@ -706,6 +706,7 @@ UnixMakefileGenerator::writeMakeParts(QTextStream &t) QString bundle_dir = project->first("DESTDIR") + project->first("QMAKE_BUNDLE") + "/"; if (!project->first("QMAKE_PKGINFO").isEmpty()) { ProString pkginfo = escapeFilePath(project->first("QMAKE_PKGINFO")); + bundledFiles << pkginfo; QString destdir = bundle_dir + "Contents"; t << pkginfo << ": \n\t"; if (!destdir.isEmpty()) |