summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@nokia.com>2010-12-06 15:41:40 (GMT)
committerOswald Buddenhagen <oswald.buddenhagen@nokia.com>2010-12-10 11:34:48 (GMT)
commit7b631a55c44520ca114f7e20a87a66c69e57a39e (patch)
treecb396e3540193e345508c50c2d70cbf50ccd9b71 /configure
parent0e04bd14bb422d7098f859a3b904fcf4d05aa458 (diff)
downloadQt-7b631a55c44520ca114f7e20a87a66c69e57a39e.zip
Qt-7b631a55c44520ca114f7e20a87a66c69e57a39e.tar.gz
Qt-7b631a55c44520ca114f7e20a87a66c69e57a39e.tar.bz2
fix nonsense condition
checking the stdout of a grep redirected to /dev/null is rather pointless. also, this code had a syntax error ...
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure b/configure
index 86c14dd..99d460b 100755
--- a/configure
+++ b/configure
@@ -8597,7 +8597,8 @@ for file in .projects .projects.3; do
*winmain/winmain.pro)
[ "$XPLATFORM_MINGW" = "yes" ] || continue
SPEC=$XQMAKESPEC ;;
- *s60main/s60main.pro) if [ "$CFG_NOPROCESS" = "yes" ] || [ -z "`echo "$XPLATFORM" | grep "symbian" >/dev/null`"]; then
+ *s60main/s60main.pro)
+ if [ "$CFG_NOPROCESS" = "yes" ] || ! echo "$XPLATFORM" | grep "symbian" >/dev/null; then
continue
fi;;
*examples/activeqt/*) continue ;;