summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>2007-05-09 14:06:06 +0000
committerths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>2007-05-09 14:06:06 +0000
commitf54f432ec7197ffe7e077fcb5cc6557aa21c9ffd (patch)
tree7035a835132c37e6cb41f3e7509806c3c7cb2418 /configure
parent6c59186721b28590f45e49b853f3f16ec317757e (diff)
downloadqemu-f54f432ec7197ffe7e077fcb5cc6557aa21c9ffd.tar.gz
Avoid use of which to detect gcc, as it is broken on darwin. Patch by
Joachim Henke. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2796 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure7
1 files changed, 1 insertions, 6 deletions
diff --git a/configure b/configure
index 245b2059d9..65fdeed9db 100755
--- a/configure
+++ b/configure
@@ -394,18 +394,13 @@ if test "$check_gcc" = "yes" ; then
#endif
int main(){return 0;}
EOF
- check_cc() {
- which "$1" 2> /dev/null
- return $?
- }
-
if "$cc" -o $TMPE $TMPC 2> /dev/null ; then
echo "WARNING: \"$cc\" looks like gcc 4.x"
found_compat_cc="no"
if test "$gcc3_search" = "yes" ; then
echo "Looking for gcc 3.x"
for compat_cc in $gcc3_list ; do
- if check_cc "$cross_prefix$compat_cc" ; then
+ if "$cross_prefix$compat_cc" --version > /dev/null 2>&1 ; then
echo "Found \"$compat_cc\""
cc="$cross_prefix$compat_cc"
found_compat_cc="yes"