From 2397a913334a91545ced17c9338329ac250287f5 Mon Sep 17 00:00:00 2001 From: dholland Date: Thu, 31 May 2012 23:40:06 +0000 Subject: Use make loop instead of shell loop to shut up pkglint. --- lang/focal/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lang/focal') diff --git a/lang/focal/Makefile b/lang/focal/Makefile index b4756cdc4a2..33e82f21869 100644 --- a/lang/focal/Makefile +++ b/lang/focal/Makefile @@ -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 @@ INSTALLATION_DIRS= bin 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" -- cgit v1.2.3