aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordt <qtc-committer@nokia.com>2009-04-16 15:27:50 +0200
committerdt <qtc-committer@nokia.com>2009-04-16 15:27:50 +0200
commitc95b3eef3757c7e6c1aa6dd6832eacd50e843ef3 (patch)
treedc94fb589d8ee122d958622a46f81e5551d7d370
parent649e3a259762dbac547baf43c946512c2b99a798 (diff)
Fixes make install not installing the wrapper
Patch by Fathi Boudra.
-rw-r--r--src/app/app.pro8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/app/app.pro b/src/app/app.pro
index 69f677dacb..0894b2a726 100644
--- a/src/app/app.pro
+++ b/src/app/app.pro
@@ -43,10 +43,12 @@ unix:!macx {
QMAKE_POST_LINK += $${QMAKE_COPY_FILE} $${COPYSRC} $${COPYDEST} $$SEPARATOR
}
- target.files += $$OUT_PWD/$$DESTDIR/$$IDE_APP_WRAPPER
- target.files += $$OUT_PWD/$$DESTDIR/$$IDE_APP_TARGET
+ wrapper.files = $$OUT_PWD/$$DESTDIR/$$IDE_APP_WRAPPER
+ wrapper.path = /bin
+
target.path = /bin
- INSTALLS += target
+
+ INSTALLS += target wrapper
}