diff options
author | ghen <ghen@pkgsrc.org> | 2006-03-02 10:01:43 +0000 |
---|---|---|
committer | ghen <ghen@pkgsrc.org> | 2006-03-02 10:01:43 +0000 |
commit | cdea9c7f2793c9ec1408f348ad8e5df793ebc07a (patch) | |
tree | 5b173bb1287e3573a1e2846c75828c8a26518efc | |
parent | 950d834a6c9719d464c137964843bb88f6960a1b (diff) | |
download | pkgsrc-cdea9c7f2793c9ec1408f348ad8e5df793ebc07a.tar.gz |
plglint says: .for variable names should not contain uppercase letters.
-rw-r--r-- | audio/cplay/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/audio/cplay/Makefile b/audio/cplay/Makefile index 771d31bf540..1b37c2a10c6 100644 --- a/audio/cplay/Makefile +++ b/audio/cplay/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2006/02/05 23:08:06 joerg Exp $ +# $NetBSD: Makefile,v 1.7 2006/03/02 10:01:43 ghen Exp $ DISTNAME= cplay-1.49 PKGREVISION= 2 @@ -26,8 +26,8 @@ SUBST_SED.paths+= -e 's,/usr/local/share/locale,${PREFIX}/${PKGLOCALEDIR}/locale do-build: cd ${WRKSRC} && ${MAKE_PROGRAM} cplayrc -.for M in ${PKGLOCALES} - msgfmt -o ${WRKSRC}/po/${M}.mo ${WRKSRC}/po/${M}.po +.for m in ${PKGLOCALES} + msgfmt -o ${WRKSRC}/po/${m}.mo ${WRKSRC}/po/${m}.po .endfor do-install: @@ -35,9 +35,9 @@ do-install: ${INSTALL_MAN} ${WRKSRC}/cplay.1 ${PREFIX}/man/man1/ ${INSTALL_DATA_DIR} ${EGDIR} ${INSTALL_DATA} ${WRKSRC}/cplayrc ${EGDIR} -.for L in ${PKGLOCALES} - ${INSTALL_DATA_DIR} ${PREFIX}/${PKGLOCALEDIR}/locale/${L}/LC_MESSAGES - ${INSTALL_DATA} ${WRKSRC}/po/${L}.mo ${PREFIX}/${PKGLOCALEDIR}/locale/${L}/LC_MESSAGES/cplay.mo +.for l in ${PKGLOCALES} + ${INSTALL_DATA_DIR} ${PREFIX}/${PKGLOCALEDIR}/locale/${l}/LC_MESSAGES + ${INSTALL_DATA} ${WRKSRC}/po/${l}.mo ${PREFIX}/${PKGLOCALEDIR}/locale/${l}/LC_MESSAGES/cplay.mo .endfor .include "../../lang/python/application.mk" |