diff options
author | Gareth Stockwell <ext-gareth.stockwell@nokia.com> | 2012-03-12 12:12:51 (GMT) |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2012-03-15 14:12:55 (GMT) |
commit | 32d8106d46fd3fdd765b3685048fc4f46de3626c (patch) | |
tree | 408ff958660b81d2c44e0abbfd4d6ba088e93462 /configure | |
parent | 412b92e5348e82c59cee30d83fc8d0c264fb5260 (diff) | |
download | Qt-32d8106d46fd3fdd765b3685048fc4f46de3626c.zip Qt-32d8106d46fd3fdd765b3685048fc4f46de3626c.tar.gz Qt-32d8106d46fd3fdd765b3685048fc4f46de3626c.tar.bz2 |
Handle -sysroot option in configure script
Although the code for processing a sysroot was already present,
the -sysroot command-line option was ignored.
Change-Id: Idde473d4b5f9cf3d56b508c71614d4cbc0248492
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1059,7 +1059,7 @@ while [ "$#" -gt 0 ]; do shift VAL=$1 ;; - -prefix|-docdir|-headerdir|-plugindir|-importdir|-datadir|-libdir|-bindir|-translationdir|-sysconfdir|-examplesdir|-demosdir|-depths|-make|-nomake|-platform|-xplatform|-buildkey|-sdk|-arch|-host-arch|-mysql_config) + -prefix|-docdir|-headerdir|-plugindir|-importdir|-datadir|-libdir|-bindir|-translationdir|-sysconfdir|-examplesdir|-demosdir|-depths|-make|-nomake|-platform|-xplatform|-buildkey|-sdk|-arch|-host-arch|-mysql_config|-sysroot) VAR=`echo $1 | sed "s,^-\(.*\),\1,"` shift VAL="$1" |