diff options
author | darcy <darcy@pkgsrc.org> | 2004-10-29 12:30:20 +0000 |
---|---|---|
committer | darcy <darcy@pkgsrc.org> | 2004-10-29 12:30:20 +0000 |
commit | 9a93a222e91202ce6e28f9650082a5a79f5d68fd (patch) | |
tree | 8d70ec5fd5690d050820ab6d4e3f51dce96f9d4a | |
parent | 24e3b17eb4b3461d8e57ee502f210f79dc8dc209 (diff) | |
download | pkgsrc-9a93a222e91202ce6e28f9650082a5a79f5d68fd.tar.gz |
Changed name of variable from file to cfile (config file) so that pkglint has
one less thing to complain about in every package that includes this file.
-rw-r--r-- | mk/autoconf.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mk/autoconf.mk b/mk/autoconf.mk index f8b599bbd11..17875fbdca0 100644 --- a/mk/autoconf.mk +++ b/mk/autoconf.mk @@ -1,4 +1,4 @@ -# $NetBSD: autoconf.mk,v 1.5 2004/10/07 02:01:38 jlam Exp $ +# $NetBSD: autoconf.mk,v 1.6 2004/10/29 12:30:20 darcy Exp $ # # makefile fragment for packages that use autoconf # AUTOCONF_REQD can be set to the minimum version required. @@ -48,9 +48,9 @@ LIBTOOL_M4_OVERRIDE?= libtool.m4 */libtool.m4 */*/libtool.m4 do-libtool-m4-override: .for _pattern_ in ${LIBTOOL_M4_OVERRIDE} ${_PKG_SILENT}${_PKG_DEBUG}cd ${WRKSRC}; \ - for file in ${_pattern_:S/libtool.m4$/configure/}; do \ - if [ -f "$$file" ]; then \ - libtool_m4=`${DIRNAME} $$file`/libtool.m4; \ + for cfile in ${_pattern_:S/libtool.m4$/configure/}; do \ + if [ -f "$$cfile" ]; then \ + libtool_m4=`${DIRNAME} $$cfile`/libtool.m4; \ ${LN} -sf ${PKGSRCDIR}/mk/gnu-config/libtool-1.4.m4 \ $$libtool_m4; \ fi; \ |