Commit 11d1fdb05a02d8ac97f8379f9f45ba767af4d44f

Authored by pbrook
1 parent 48ffabc6

Fix bogus test syntax.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4550 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 1 additions and 1 deletions
configure
... ... @@ -1200,7 +1200,7 @@ case "$target_cpu" in
1200 1200 echo "#define USE_KQEMU 1" >> $config_h
1201 1201 fi
1202 1202 gcc3minver=`$cc --version 2> /dev/null| fgrep "(GCC) 3." | awk '{ print $3 }' | cut -f2 -d.`
1203   - if test -n "$gcc3minver" -a $gcc3minver -gt 3
  1203 + if test -n "$gcc3minver" && test $gcc3minver -gt 3
1204 1204 then
1205 1205 echo "HAVE_GT_GCC_3_3=true" >> $config_mak
1206 1206 else
... ...