summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJiang Jiang <jiang.jiang@nokia.com>2011-05-04 15:44:32 +0200
committerJiang Jiang <jiang.jiang@nokia.com>2011-05-04 15:55:51 +0200
commit89cf89c51d1355467bd749c02cea49dfd08e841f (patch)
tree6b0d16122ee417761e4fb1b5ef0c70c1d85c4a4d
parentedf55f7d500a18c04e1f7244958491c79e7674cf (diff)
Fix framework absolute path issue
module.prf incorrectly overwrites INSTALLS which results the absolute soname not prepended. Reviewed-by: Marius Storm-Olsen
-rw-r--r--mkspecs/features/module.prf2
1 files changed, 1 insertions, 1 deletions
diff --git a/mkspecs/features/module.prf b/mkspecs/features/module.prf
index 248f7f516a..85639f0345 100644
--- a/mkspecs/features/module.prf
+++ b/mkspecs/features/module.prf
@@ -1,7 +1,7 @@
!isEmpty(MODULE_PRI) {
pritarget.path = $$[QT_INSTALL_DATA]/mkspecs/modules
pritarget.files = $$MODULE_PRI
- INSTALLS = pritarget
+ INSTALLS += pritarget
} else {
warning("Project $$basename(_PRO_FILE_) is a module, but has not defined MODULE_PRI, which is required for Qt to expose the module to other projects")
}