pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/lang/focal Use make loop instead of shell loop to shut...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/bb4278d3d9fd
branches:  trunk
changeset: 604495:bb4278d3d9fd
user:      dholland <dholland%pkgsrc.org@localhost>
date:      Thu May 31 23:40:06 2012 +0000

description:
Use make loop instead of shell loop to shut up pkglint.

diffstat:

 lang/focal/Makefile |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (21 lines):

diff -r 8617984efd94 -r bb4278d3d9fd lang/focal/Makefile
--- a/lang/focal/Makefile       Thu May 31 23:37:57 2012 +0000
+++ b/lang/focal/Makefile       Thu May 31 23:40:06 2012 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.7 2008/03/04 16:38:12 jlam Exp $
+# $NetBSD: Makefile,v 1.8 2012/05/31 23:40:06 dholland Exp $
 #
 
 DISTNAME=              focal
@@ -19,8 +19,8 @@
 do-install:
        ${INSTALL_PROGRAM} ${WRKSRC}/focal ${DESTDIR}${PREFIX}/bin
        ${INSTALL_DATA_DIR} ${DESTDIR}${FOCALDOCDIR}
-       for i in focal.doc queens.foc sieve.foc; do \
-               ${INSTALL_DATA} ${WRKSRC}/$$i ${DESTDIR}${FOCALDOCDIR}; \
-       done
+.for i in focal.doc queens.foc sieve.foc
+       ${INSTALL_DATA} ${WRKSRC}/${i} ${DESTDIR}${FOCALDOCDIR}
+.endfor
 
 .include "../../mk/bsd.pkg.mk"



Home | Main Index | Thread Index | Old Index