autoconf-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

extra error messages on Mac OS X


From: Nobuyoshi Nakada
Subject: extra error messages on Mac OS X
Date: Fri, 08 Mar 2013 15:03:23 +0900
User-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:17.0) Gecko/20130216 Thunderbird/17.0.3

Since fa8beeb3dcd4df6f97183ab29f68c6b3dcc8e844, warnings about conftest.dSYM on 
Mac OS X are almost gone away, but there are still some warnings.
From a464734a61366f6ff91c5a2ef147bbdfd11e2f62 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Fri, 8 Mar 2013 14:57:17 +0900 Subject: [PATCH] Avoid warnings about conftest.dSYM directories on Mac OS X. * lib/autoconf/c.m4 (AC_PROG_CXX_C_O): Remove `conftest.*' recursively. * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Likewise. * lib/autoconf/functions.m4 (AC_FUNC_SELECT_ARGTYPES): Likewise. * lib/autoconf/general.m4 (AC_EGREP_CPP): Likewise. --- lib/autoconf/c.m4 | 2 +- lib/autoconf/fortran.m4 | 2 +- lib/autoconf/functions.m4 | 2 +- lib/autoconf/general.m4 | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/autoconf/c.m4 b/lib/autoconf/c.m4 index 6fe00fb..abf4a66 100644 --- a/lib/autoconf/c.m4 +++ b/lib/autoconf/c.m4 @@ -823,7 +823,7 @@ if _AC_DO_VAR(ac_try) && else ac_cv_prog_cxx_c_o=no fi -rm -f conftest*]) +rm -rf conftest*]) if test $ac_cv_prog_cxx_c_o = no; then AC_DEFINE(CXX_NO_MINUS_C_MINUS_O, 1, [Define to 1 if your C++ compiler doesn't accept diff --git a/lib/autoconf/fortran.m4 b/lib/autoconf/fortran.m4 index 3293657..f20b029 100644 --- a/lib/autoconf/fortran.m4 +++ b/lib/autoconf/fortran.m4 @@ -451,7 +451,7 @@ if _AC_DO_VAR(ac_try) && else ac_cv_prog_[]_AC_LANG_ABBREV[]_c_o=no fi -rm -f conftest*]) +rm -rf conftest*]) if test $ac_cv_prog_[]_AC_LANG_ABBREV[]_c_o = no; then AC_DEFINE([]_AC_FC[]_NO_MINUS_C_MINUS_O, 1, [Define to 1 if your Fortran compiler doesn't accept diff --git a/lib/autoconf/functions.m4 b/lib/autoconf/functions.m4 index 1b56641..f994a4a 100644 --- a/lib/autoconf/functions.m4 +++ b/lib/autoconf/functions.m4 @@ -1510,7 +1510,7 @@ AC_DEFINE_UNQUOTED(SELECT_TYPE_ARG234, ($[2]), [Define to the type of args 2, 3 and 4 for `select'.]) AC_DEFINE_UNQUOTED(SELECT_TYPE_ARG5, ($[3]), [Define to the type of arg 5 for `select'.]) -rm -f conftest* +rm -rf conftest* ])# AC_FUNC_SELECT_ARGTYPES diff --git a/lib/autoconf/general.m4 b/lib/autoconf/general.m4 index 805535a..70b0168 100644 --- a/lib/autoconf/general.m4 +++ b/lib/autoconf/general.m4 @@ -2584,7 +2584,7 @@ dnl Quote $1 to prevent m4 from eating character classes $EGREP "[$1]" >/dev/null 2>&1], [$3], [$4]) -rm -f conftest* +rm -rf conftest* ])# AC_EGREP_CPP -- 1.8.1.3
reply via email to

[Prev in Thread] Current Thread [Next in Thread]