summaryrefslogtreecommitdiffstats
path: root/config.tests
diff options
context:
space:
mode:
authorDavid Faure <faure@kde.org>2011-12-13 17:24:54 +0100
committerQt by Nokia <qt-info@nokia.com>2011-12-18 19:12:42 +0100
commitf1f500b9aa70edfc7511a714c9aefb132d66f10e (patch)
tree6671de748036cc697717bf36a45268db1e2fbb12 /config.tests
parent3992c1cb1557421d85800201558a12d426acb16e (diff)
Fix fvisibility.test for "QMAKE_CXX = ccache g++"
Testcase: adding this line at the end of mkspecs/linux-g++-64/qmake.conf QMAKE_CXX = ccache g++ Result: fvisibility.test: line 28: ccache g++: command not found Symbol visibility control disabled. Result after fix: Symbol visibility control enabled. Change-Id: I4049264a38a43e1bee3cb823d53836f0689f0b53 Reviewed-by: João Abecasis <joao.abecasis@nokia.com>
Diffstat (limited to 'config.tests')
-rwxr-xr-xconfig.tests/unix/fvisibility.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/config.tests/unix/fvisibility.test b/config.tests/unix/fvisibility.test
index 27c6841082..6e56410075 100755
--- a/config.tests/unix/fvisibility.test
+++ b/config.tests/unix/fvisibility.test
@@ -25,9 +25,9 @@ __global void blah();
EOF
if [ "$VERBOSE" = "yes" ] ; then
- "$COMPILER" -c $CMDLINE fvisibility.c && FVISIBILITY_SUPPORT=yes
+ $COMPILER -c $CMDLINE fvisibility.c && FVISIBILITY_SUPPORT=yes
else
- "$COMPILER" -c $CMDLINE fvisibility.c >/dev/null 2>&1 && FVISIBILITY_SUPPORT=yes
+ $COMPILER -c $CMDLINE fvisibility.c >/dev/null 2>&1 && FVISIBILITY_SUPPORT=yes
fi
rm -f fvisibility.c fvisibility.o
}