diff options
author | Harald Fernengel <harald.fernengel@nokia.com> | 2009-11-17 09:28:27 (GMT) |
---|---|---|
committer | Harald Fernengel <harald.fernengel@nokia.com> | 2009-11-17 09:28:27 (GMT) |
commit | 333bd2e761af8aaf6efd3d66eb028af046c4dfc2 (patch) | |
tree | e691744c335fa62ab0d9175b3150fe3555a7a5bb /src/qbase.pri | |
parent | dd1ab7b8ed2c847d2ba3b19c007f545f6fb098df (diff) | |
download | Qt-333bd2e761af8aaf6efd3d66eb028af046c4dfc2.zip Qt-333bd2e761af8aaf6efd3d66eb028af046c4dfc2.tar.gz Qt-333bd2e761af8aaf6efd3d66eb028af046c4dfc2.tar.bz2 |
Fix detection of linux-g++
Never use "linux-g++*" to check for linux-g++, since this will break embedded
builds which use linux-arm-g++ and friends. Use 'linux*-g++*' to check for any
g++ on linux mkspec.
Reviewed-by: Simon Hausmann
Diffstat (limited to 'src/qbase.pri')
-rw-r--r-- | src/qbase.pri | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qbase.pri b/src/qbase.pri index 6428130..0aae24d 100644 --- a/src/qbase.pri +++ b/src/qbase.pri @@ -36,7 +36,7 @@ CONFIG += qt warn_on depend_includepath CONFIG += qmake_cache target_qt CONFIG -= fix_output_dirs win32|mac:!macx-xcode:CONFIG += debug_and_release -linux-g++*:QMAKE_LFLAGS += $$QMAKE_LFLAGS_NOUNDEF +linux*-g++*:QMAKE_LFLAGS += $$QMAKE_LFLAGS_NOUNDEF contains(QT_CONFIG, reduce_exports):CONFIG += hide_symbols unix:contains(QT_CONFIG, reduce_relocations):CONFIG += bsymbolic_functions |