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 /fonts | |
parent | 45ba4e37fd8e682cf12febc192ee0302681bfa77 (diff) | |
download | pkgsrc-f565a1af87ccaccae3cfc89af55ee17f3d8ff47b.tar.gz |
".for variable names should not contain uppercase letters"
Diffstat (limited to 'fonts')
-rw-r--r-- | fonts/intlfonts/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fonts/intlfonts/Makefile b/fonts/intlfonts/Makefile index 1058f329573..e73b4e9bd84 100644 --- a/fonts/intlfonts/Makefile +++ b/fonts/intlfonts/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.31 2013/04/06 13:01:26 rodent Exp $ +# $NetBSD: Makefile,v 1.32 2013/04/06 13:24:19 rodent Exp $ DISTNAME= intlfonts-1.2.1 PKGREVISION= 5 @@ -65,8 +65,8 @@ PLIST_SRC= PLIST PLIST.extrafonts .endif post-extract: -.for FILE in ${MISC_FILES} - ${CP} ${_DISTDIR}/${FILE} ${WRKSRC} +.for file in ${MISC_FILES} + ${CP} ${_DISTDIR}/${file} ${WRKSRC} .endfor .include "../../mk/bsd.pkg.mk" |