diff options
author | tron <tron@pkgsrc.org> | 2001-01-25 08:45:46 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2001-01-25 08:45:46 +0000 |
commit | 75d3dc432a4e43842a887aa1902556a22bb58129 (patch) | |
tree | 18b7fab807150d463252e1eb93ed1cfbf930dccf /pkgtools | |
parent | 786e2c3873e8009518c07eb572b437a7202fef5f (diff) | |
download | pkgsrc-75d3dc432a4e43842a887aa1902556a22bb58129.tar.gz |
Use "FILE" instead of "file" as variable name to avoid a "pkglint" warning
here.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/pkglint/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/pkgtools/pkglint/Makefile b/pkgtools/pkglint/Makefile index 13b4dba5c33..c885876bb35 100644 --- a/pkgtools/pkglint/Makefile +++ b/pkgtools/pkglint/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.74 2001/01/19 21:16:51 tron Exp $ +# $NetBSD: Makefile,v 1.75 2001/01/25 08:45:46 tron Exp $ # DISTNAME= pkglint-2.34 @@ -31,18 +31,18 @@ NROFF= nroff -mandoc .endif do-build: -.for file in pkglint lintpkgsrc plist-clash +.for FILE in pkglint lintpkgsrc plist-clash ${SED} -e 's|@PREFIX@|${PREFIX}|g' \ -e 's|@PORTSDIR@|${PKGSRCDIR}|g' \ - < ${FILESDIR}/${file}.pl \ - > ${WRKSRC}/${file} + < ${FILESDIR}/${FILE}.pl \ + > ${WRKSRC}/${FILE} .endfor -.for file in pkglint lintpkgsrc +.for FILE in pkglint lintpkgsrc ${SED} -e 's|@PREFIX@|${PREFIX}|g' \ -e 's|@PORTSDIR@|${PKGSRCDIR}|g' \ - < ${FILESDIR}/${file}.1 \ - > ${WRKSRC}/${file}.1 - ${NROFF} ${WRKSRC}/${file}.1 >${WRKSRC}/${file}.0 + < ${FILESDIR}/${FILE}.1 \ + > ${WRKSRC}/${FILE}.1 + ${NROFF} ${WRKSRC}/${FILE}.1 >${WRKSRC}/${FILE}.0 .endfor do-install: |