diff options
author | Steve Price <steve@FreeBSD.org> | 2000-08-25 14:36:39 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 2000-08-25 14:36:39 +0000 |
commit | de8800ab88978b0fbde1dd1e0a46f7539084dd1e (patch) | |
tree | acf591e99e77dd77485ef793e9c3c2bc3b85a19d /devel/autoconf259 | |
parent | - Support NOPORTDOCS (diff) |
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/autoconf259')
-rw-r--r-- | devel/autoconf259/files/patch-ag | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devel/autoconf259/files/patch-ag b/devel/autoconf259/files/patch-ag index 7b5182c0b188..0792661a7c7d 100644 --- a/devel/autoconf259/files/patch-ag +++ b/devel/autoconf259/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 |