summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@digia.com>2013-03-08 11:53:10 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-03-15 18:04:34 +0100
commit79a144d74643c7d124d42edc94475f4f16539c21 (patch)
treee8649d94d840191285b0716ee311f9bac6d0c214 /configure
parentb6f8557af805132ecac16e33fcda1f750988af10 (diff)
allow passing values with spaces to -device-option
note that the value is written verbatim to the qmake file, so additional quoting may be required on the command line. Task-number: QTBUG-30102 Change-Id: I02ca9a44fae82b6932982e6385508b8a304cc1e7 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 6d6b816c30..2d6dd73c4e 100755
--- a/configure
+++ b/configure
@@ -1419,7 +1419,7 @@ while [ "$#" -gt 0 ]; do
device-option)
DEV_VAR=`echo $VAL | sed "s,^\(.*\)=.*,\1,"`
DEV_VAL=`echo $VAL | sed "s,^.*=\(.*\),\1,"`
- DeviceVar set $DEV_VAR $DEV_VAL
+ DeviceVar set $DEV_VAR "$DEV_VAL"
;;
qpa)
QT_QPA_DEFAULT_PLATFORM="$VAL"