diff options
author | Samuli Piippo <samuli.piippo@digia.com> | 2012-05-02 12:16:57 (GMT) |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2012-05-03 07:18:50 (GMT) |
commit | a28f29270611247775a43e99525c18c7030e1488 (patch) | |
tree | 8119f0537f4e9a138330f8a2a2ac3107b28c69eb | |
parent | 3662027578f85366547e8e172cf3a42c54e59793 (diff) | |
download | Qt-a28f29270611247775a43e99525c18c7030e1488.zip Qt-a28f29270611247775a43e99525c18c7030e1488.tar.gz Qt-a28f29270611247775a43e99525c18c7030e1488.tar.bz2 |
Fix auto-detected QNX mkspec paths in configure
Removing 'unsupported' from QNX mkspec paths in configure when
it auto detects missing platform and xplatform arguments.
Change-Id: Icc180a0c1cb226865e3f416ae50eec16523114b5
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2767,10 +2767,10 @@ if [ "$CFG_EMBEDDED" != "no" ]; then fi ;; QNX:*) - [ -z "$PLATFORM" ] && PLATFORM=unsupported/qws/qnx-generic-g++ + [ -z "$PLATFORM" ] && PLATFORM=qws/qnx-generic-g++ if [ -z "$XPLATFORM" ]; then [ "$CFG_EMBEDDED" = "auto" ] && CFG_EMBEDDED=generic - XPLATFORM="unsupported/qws/qnx-$CFG_EMBEDDED-g++" + XPLATFORM="qws/qnx-$CFG_EMBEDDED-g++" fi ;; CYGWIN*:*) |