aboutsummaryrefslogtreecommitdiff
path: root/devel/autoconf26
diff options
context:
space:
mode:
authorSteve Price <steve@FreeBSD.org>2000-08-25 14:36:39 +0000
committerSteve Price <steve@FreeBSD.org>2000-08-25 14:36:39 +0000
commitde8800ab88978b0fbde1dd1e0a46f7539084dd1e (patch)
treeacf591e99e77dd77485ef793e9c3c2bc3b85a19d /devel/autoconf26
parent0f1f4478e553b036267cf181ae721d520d61672e (diff)
downloadports-de8800ab88978b0fbde1dd1e0a46f7539084dd1e.tar.gz
ports-de8800ab88978b0fbde1dd1e0a46f7539084dd1e.zip
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>
Notes
Notes: svn path=/head/; revision=31967
Diffstat (limited to 'devel/autoconf26')
-rw-r--r--devel/autoconf26/files/patch-ag2
1 files changed, 1 insertions, 1 deletions
diff --git a/devel/autoconf26/files/patch-ag b/devel/autoconf26/files/patch-ag
index 7b5182c0b188..0792661a7c7d 100644
--- a/devel/autoconf26/files/patch-ag
+++ b/devel/autoconf26/files/patch-ag
@@ -5,7 +5,7 @@
for file in conftest.*; do
case $file in
- *.c | *.o | *.obj) ;;
-+ *.[Cc] | *.o | *.obj) ;;
++ *.c | *.C | *.o | *.obj) ;;
*) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;;
esac
done