Ticket #8579: configure.patch

File configure.patch, 920 bytes (added by SF/lblume, 18 years ago)

Moving quotation marks for Solaris' antique /bin/sh

  • configure

    old new  
    156156
    157157if test -n "$_host"; then
    158158        # In cross-compiling mode, we cannot run the result
    159         eval "$1 -o tmp_cxx_compiler$EXEEXT tmp_cxx_compiler.cpp 2> /dev/null" && rm -f tmp_cxx_compiler$EXEEXT tmp_cxx_compiler.cpp
     159        eval "$1 -o tmp_cxx_compiler$EXEEXT tmp_cxx_compiler.cpp" 2> /dev/null && rm -f tmp_cxx_compiler$EXEEXT tmp_cxx_compiler.cpp
    160160else
    161         eval "$1 -o tmp_cxx_compiler$EXEEXT tmp_cxx_compiler.cpp 2> /dev/null" && eval "./tmp_cxx_compiler 2> /dev/null" && rm -f tmp_cxx_compiler$EXEEXT tmp_cxx_compiler.cpp
     161        eval "$1 -o tmp_cxx_compiler$EXEEXT tmp_cxx_compiler.cpp" 2> /dev/null && eval "./tmp_cxx_compiler 2> /dev/null" && rm -f tmp_cxx_compiler$EXEEXT tmp_cxx_compiler.cpp
    162162fi
    163163}
    164164
     
    587587        break
    588588        fi
    589589done
    590 if test -z $CXX; then
     590if test -z "$CXX"; then
    591591        echo "none found!"
    592592        exit 1
    593593fi