From c95b3eef3757c7e6c1aa6dd6832eacd50e843ef3 Mon Sep 17 00:00:00 2001 From: dt Date: Thu, 16 Apr 2009 15:27:50 +0200 Subject: [PATCH] Fixes make install not installing the wrapper Patch by Fathi Boudra. --- src/app/app.pro | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/app/app.pro b/src/app/app.pro index 69f677dacb7..0894b2a7261 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 }