diff options
author | steve <steve@FreeBSD.org> | 2000-08-25 14:36:39 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 2000-08-25 14:36:39 +0000 |
commit | 6ae683cfbe9bc02dfc79b76c125e59641f4435e0 (patch) | |
tree | a750a72ca84c180e77a7411befed25213f396504 /devel/autoconf213 | |
parent | fef306defd1983ca8a7230de043cc6260b4250c3 (diff) | |
download | FreeBSD-ports-6ae683cfbe9bc02dfc79b76c125e59641f4435e0.zip FreeBSD-ports-6ae683cfbe9bc02dfc79b76c125e59641f4435e0.tar.gz |
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>
Diffstat (limited to 'devel/autoconf213')
-rw-r--r-- | devel/autoconf213/files/patch-ag | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devel/autoconf213/files/patch-ag b/devel/autoconf213/files/patch-ag index 7b5182c..0792661 100644 --- a/devel/autoconf213/files/patch-ag +++ b/devel/autoconf213/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 |