]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
AC_PROG_CC etc: avoid warnings when removing conftest* on OS X
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 19 Mar 2013 18:22:16 +0000 (11:22 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 19 Mar 2013 18:22:34 +0000 (11:22 -0700)
I forgot one of the fixes Mr. Nakada reported for the 2013-03-08 fix.
* lib/autoconf/general.m4 (AC_EGREP_CPP):
Use rm -rf, not just rm -f, when removing conftest*.

lib/autoconf/general.m4

index 805535a04d5dbd43df111ef1a4d9a3abc9dcd264..70b01685f268bba1b5c382679e8e8073728f37b4 100644 (file)
@@ -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