summaryrefslogtreecommitdiffstats
path: root/mkspecs
diff options
context:
space:
mode:
authoraxis <qt-info@nokia.com>2010-07-28 08:21:46 (GMT)
committeraxis <qt-info@nokia.com>2010-07-28 08:23:47 (GMT)
commitc4394ce84edbfc41869a77bb3e73a90915cc9df3 (patch)
treea0afbfcf861b0f80f315261d8de8d83f3b693427 /mkspecs
parent104e9d2b3f8ac981a277cb0d63a1e5be8e352275 (diff)
downloadQt-c4394ce84edbfc41869a77bb3e73a90915cc9df3.zip
Qt-c4394ce84edbfc41869a77bb3e73a90915cc9df3.tar.gz
Qt-c4394ce84edbfc41869a77bb3e73a90915cc9df3.tar.bz2
Revert "Fixed a parsing error during sis and runonphone target creation."
This reverts commit ebe6a5238947c30a613b61b521cb0d094efa2d02.
Diffstat (limited to 'mkspecs')
-rw-r--r--mkspecs/features/sis_targets.prf2
-rw-r--r--mkspecs/features/symbian/run_on_phone.prf2
2 files changed, 2 insertions, 2 deletions
diff --git a/mkspecs/features/sis_targets.prf b/mkspecs/features/sis_targets.prf
index f7e633c..99f5910 100644
--- a/mkspecs/features/sis_targets.prf
+++ b/mkspecs/features/sis_targets.prf
@@ -4,7 +4,7 @@ GENERATE_SIS_TARGETS = false
contains(TEMPLATE, app): GENERATE_SIS_TARGETS = true
else:!equals(DEPLOYMENT, default_deployment) {
for(dep_item, $$list($$DEPLOYMENT)) {
- eval(dep_item_sources = $${dep_item}.sources)
+ dep_item_sources = $$eval($${dep_item}.sources)
!isEmpty(dep_item_sources): GENERATE_SIS_TARGETS = true
}
}
diff --git a/mkspecs/features/symbian/run_on_phone.prf b/mkspecs/features/symbian/run_on_phone.prf
index 6fd400a..818151a 100644
--- a/mkspecs/features/symbian/run_on_phone.prf
+++ b/mkspecs/features/symbian/run_on_phone.prf
@@ -5,7 +5,7 @@ GENERATE_RUN_TARGETS = false
contains(TEMPLATE, app): GENERATE_RUN_TARGETS = true
else:!equals(DEPLOYMENT, default_deployment) {
for(dep_item, $$list($$DEPLOYMENT)) {
- eval(dep_item_sources = $${dep_item}.sources)
+ dep_item_sources = $$eval($${dep_item}.sources)
!isEmpty(dep_item_sources): GENERATE_RUN_TARGETS = true
}
}