freebsd-ports/devel/autoconf259/files/patch-ag
Steve Price de8800ab88 m4(1) was stripping the [] to leave *.Cc in my previous fix and this
was causing problems with a few ports determining that .c was the suffix
for executables.  The fix is to expand it to '*.c | *.C' so that m4(1)
doesn't try to outsmart us.

Noticed by:	George W. Dinolt <gdinolt@pacbell.net>
2000-08-25 14:36:39 +00:00

11 lines
346 B
Text

--- acspecific.m4.orig Sun Aug 13 19:42:57 2000
+++ acspecific.m4 Sun Aug 13 19:43:24 2000
@@ -2659,7 +2659,7 @@
if AC_TRY_EVAL(ac_link); then
for file in conftest.*; do
case $file in
- *.c | *.o | *.obj) ;;
+ *.c | *.C | *.o | *.obj) ;;
*) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;;
esac
done