summaryrefslogtreecommitdiffstats
path: root/mkspecs
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@qt.io>2017-05-05 15:48:26 +0200
committerStephan Binner <stephan.binner@basyskom.com>2017-05-08 14:10:43 +0000
commit961fe0df2e25225049bcfd8d6d2f9e314dc829a6 (patch)
treea0ca12a981d02196ccc1f4028b0e53906a47cca3 /mkspecs
parentf12e4903c7b7c06ad3068e4ac195ff0bbe857e28 (diff)
make configure -list-features print the section field
prefix it to the purpose field. this makes the presentation more consistent with the graphical tool, and avoids the need to be redundant in the description. Change-Id: Iea58885637e0518aa1ec2f69ff05090b7e1e77a9 Reviewed-by: Stephan Binner <stephan.binner@basyskom.com> Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'mkspecs')
-rw-r--r--mkspecs/features/qt_configure.prf4
1 files changed, 3 insertions, 1 deletions
diff --git a/mkspecs/features/qt_configure.prf b/mkspecs/features/qt_configure.prf
index 966c43108c..5cbc0d4bfd 100644
--- a/mkspecs/features/qt_configure.prf
+++ b/mkspecs/features/qt_configure.prf
@@ -1919,8 +1919,10 @@ qtConfCheckErrors()
for (k, $${currentConfig}.features._KEYS_) {
pp = $$eval($${currentConfig}.features.$${k}.purpose)
!isEmpty(pp) {
+ pfx = $$eval($${currentConfig}.features.$${k}.section)
+ !isEmpty(pfx): pfx = "$$pfx: "
all_ft += $$qtConfPadCols($$k, ".......................", \
- $$section(pp, $$escape_expand(\\n), 0, 0))
+ $$pfx$$section(pp, $$escape_expand(\\n), 0, 0))
}
}
}