diff options
author | Sergio Ahumada <sergio.ahumada@nokia.com> | 2011-04-04 09:56:56 (GMT) |
---|---|---|
committer | Sergio Ahumada <sergio.ahumada@nokia.com> | 2011-04-04 09:56:56 (GMT) |
commit | 0170a4dd8a720921e591622188bd1f11d9fe357b (patch) | |
tree | 3e67fc8d28de8819f234add4575132d6c8b05d63 | |
parent | d1a21551dc31937db4b62b2406ea3820dd8a8c0a (diff) | |
download | Qt-0170a4dd8a720921e591622188bd1f11d9fe357b.zip Qt-0170a4dd8a720921e591622188bd1f11d9fe357b.tar.gz Qt-0170a4dd8a720921e591622188bd1f11d9fe357b.tar.bz2 |
Fixing a traling space on if statement that fails in Solaris.
64e640716204af69056c34ddac5ce26628a1edd2 broke configure in Solaris.
+ /export/home/qt/config.tests/unix/fvisibility.test g++ no
CFG_REDUCE_EXPORTS=no
+ [ no != no ]
+ [ no = auto ]
+ [ maybe = yes ]
+ [ no = yes]
configure: test: ] missing
Reviewed-by: Liang Qi
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3244,7 +3244,7 @@ if [ "$PLATFORM_QWS" = "yes" ] && [ "$CFG_OPENGL" = "auto" ]; then fi # mac -if [ "$PLATFORM_MAC" = "yes"] && [ "$XPLATFORM_SYMBIAN" = "no" ]; then +if [ "$PLATFORM_MAC" = "yes" ] && [ "$XPLATFORM_SYMBIAN" = "no" ]; then if [ "$CFG_OPENGL" = "auto" ] || [ "$CFG_OPENGL" = "yes" ]; then CFG_OPENGL=desktop fi |