diff options
author | rodent <rodent@pkgsrc.org> | 2013-04-06 13:24:18 +0000 |
---|---|---|
committer | rodent <rodent@pkgsrc.org> | 2013-04-06 13:24:18 +0000 |
commit | f565a1af87ccaccae3cfc89af55ee17f3d8ff47b (patch) | |
tree | 7e09ae380f09209fdebcf2ee8170c971a410c319 /print | |
parent | 45ba4e37fd8e682cf12febc192ee0302681bfa77 (diff) | |
download | pkgsrc-f565a1af87ccaccae3cfc89af55ee17f3d8ff47b.tar.gz |
".for variable names should not contain uppercase letters"
Diffstat (limited to 'print')
-rw-r--r-- | print/ja-vflib-lib/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/print/ja-vflib-lib/Makefile b/print/ja-vflib-lib/Makefile index f6f6a6f2078..0cf7026433e 100644 --- a/print/ja-vflib-lib/Makefile +++ b/print/ja-vflib-lib/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2011/05/28 09:07:38 obache Exp $ +# $NetBSD: Makefile,v 1.12 2013/04/06 13:24:19 rodent Exp $ .include "Makefile.common" @@ -13,12 +13,12 @@ INSTALL_TARGET= install-src USE_TOOLS+= pax post-build: -.for FILE in vfontcap vfontcap.bdf +.for file in vfontcap vfontcap.bdf cd ${WRKSRC}; \ - ${MV} ${FILE} ${FILE}.orig; \ + ${MV} ${file} ${file}.orig; \ ${SED} -e "s|/usr/local/share/fonts|${PREFIX}/share/fonts|g" \ - ${FILE}.orig > ${FILE}; \ - ${RM} ${FILE}.orig + ${file}.orig > ${file}; \ + ${RM} ${file}.orig .endfor post-install: |