From 0eecd899ea5e77953e62332e34b56a164bdaa193 Mon Sep 17 00:00:00 2001 From: Jim Grosbach Date: Fri, 26 Sep 2008 17:27:58 +0000 Subject: [PATCH] When looking for executable extensions, ignore .dSYM, as that's the debug info directory on Darwin. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56667 91177308-0d34-0410-b5e6-96231b3b80d8 --- autoconf/m4/build_exeext.m4 | 2 +- configure | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/autoconf/m4/build_exeext.m4 b/autoconf/m4/build_exeext.m4 index 5ea7d2e6412..1bdecc1ba57 100644 --- a/autoconf/m4/build_exeext.m4 +++ b/autoconf/m4/build_exeext.m4 @@ -25,7 +25,7 @@ else if AC_TRY_EVAL(ac_build_link); then for file in conftest.*; do case $file in - *.c | *.o | *.obj) ;; + *.c | *.o | *.obj | *.dSYM) ;; *) ac_cv_build_exeext=`echo $file | sed -e s/conftest//` ;; esac done diff --git a/configure b/configure index af8144d67ab..8183959c0e9 100755 --- a/configure +++ b/configure @@ -4545,7 +4545,7 @@ echo "$as_me: error: no acceptable cc found in \$PATH" >&2;} (exit $ac_status); }; then for file in conftest.*; do case $file in - *.c | *.o | *.obj) ;; + *.c | *.o | *.obj | *.dSYM) ;; *) ac_cv_build_exeext=`echo $file | sed -e s/conftest//` ;; esac done -- 2.34.1