diff options
author | axis <qt-info@nokia.com> | 2010-03-23 11:41:26 (GMT) |
---|---|---|
committer | axis <qt-info@nokia.com> | 2010-03-23 11:41:26 (GMT) |
commit | c023432503ca3569ea06a4f71d2d192a6f4e069e (patch) | |
tree | 72274e13af16b4439def86777727dcac0e63b226 /configure | |
parent | bc7bd66820525fde30dda20fbb16d85e40630bd4 (diff) | |
download | Qt-c023432503ca3569ea06a4f71d2d192a6f4e069e.zip Qt-c023432503ca3569ea06a4f71d2d192a6f4e069e.tar.gz Qt-c023432503ca3569ea06a4f71d2d192a6f4e069e.tar.bz2 |
Fixed usage of xplatform in configure.
XQMAKESPEC contains the full path, so don't use that, since the full
path could contain "symbian" by accident.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3994,7 +3994,7 @@ if [ "$PLATFORM_QWS" = "yes" -o "$PLATFORM_X11" = "yes" ]; then EOF fi -if echo "$XQMAKESPEC" | grep symbian > /dev/null ; then +if echo "$XPLATFORM" | grep symbian > /dev/null ; then cat << EOF Qt for Symbian only: @@ -4656,7 +4656,7 @@ if [ "$CFG_S60" = "auto" ]; then fi if [ "$CFG_QS60STYLE" = "auto" ]; then - if echo "$XQMAKESPEC" | grep symbian > /dev/null; then + if echo "$XPLATFORM" | grep symbian > /dev/null; then CFG_QS60STYLE=qt else CFG_QS60STYLE=no |