From efe702196ac87ce78d753672013429018e723a9e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jan=20Dj=C3=A4rv?= Date: Sat, 28 Dec 2013 11:37:53 +0100 Subject: [PATCH] * configure.ac: Fix CC detection for xcrun case. --- configure.ac | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index 5dafb51a5cf..cf4ca9814e6 100644 --- a/configure.ac +++ b/configure.ac @@ -654,15 +654,12 @@ fi #### Choose a compiler. dnl Sets GCC=yes if using gcc. +AC_PROG_CC([gcc cc cl clang "$XCRUN gcc" "$XCRUN clang"]) if test -n "$XCRUN"; then - if test -z "$CC"; then - AC_PROG_CC([gcc cc cl clang "$XCRUN gcc" "$XCRUN clang"]) - fi AC_CHECK_PROGS(AR, [ar "$XCRUN ar"]) test -n "$AR" && export AR -else - AC_PROG_CC fi + AM_PROG_CC_C_O if test x$GCC = xyes; then -- 2.39.2