diff options
author | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2010-12-06 15:41:40 (GMT) |
---|---|---|
committer | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2010-12-10 11:34:48 (GMT) |
commit | 7b631a55c44520ca114f7e20a87a66c69e57a39e (patch) | |
tree | cb396e3540193e345508c50c2d70cbf50ccd9b71 /configure | |
parent | 0e04bd14bb422d7098f859a3b904fcf4d05aa458 (diff) | |
download | Qt-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-x | configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 ;; |