diff options
author | schmonz <schmonz@pkgsrc.org> | 2007-03-24 06:20:30 +0000 |
---|---|---|
committer | schmonz <schmonz@pkgsrc.org> | 2007-03-24 06:20:30 +0000 |
commit | b4c74989007eab02c4bbb5f895037b4458042dc2 (patch) | |
tree | b7f1d1f245a0509fc16a71e17d4c14f2525c2b7b /devel/jam | |
parent | 623caa29451a3e25a2295d685390b753730b686f (diff) | |
download | pkgsrc-b4c74989007eab02c4bbb5f895037b4458042dc2.tar.gz |
Quell pkglint: don't forcibly hide output of shell commands in do-install.
Diffstat (limited to 'devel/jam')
-rw-r--r-- | devel/jam/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/devel/jam/Makefile b/devel/jam/Makefile index f6a26f260fa..ac9b5e6c22a 100644 --- a/devel/jam/Makefile +++ b/devel/jam/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2006/07/18 19:05:07 minskim Exp $ +# $NetBSD: Makefile,v 1.11 2007/03/24 06:20:30 schmonz Exp $ # DISTNAME= jam-2.5 @@ -23,17 +23,17 @@ HTMLDIR= share/doc/html/${PKGBASE} INSTALLATION_DIRS= bin do-install: - @for f in jam mkjambase; do \ + for f in jam mkjambase; do \ ${INSTALL_PROGRAM} ${WRKSRC}/bin.*/$${f} ${PREFIX}/bin; \ done ${INSTALL_DATA_DIR} ${PREFIX}/${DOCDIR} - @for f in Porting README RELNOTES; do \ + for f in Porting README RELNOTES; do \ ${INSTALL_DATA} ${WRKSRC}/$${f} ${PREFIX}/${DOCDIR}; \ done ${INSTALL_DATA_DIR} ${PREFIX}/${HTMLDIR} - @for f in *.html; do \ + for f in *.html; do \ ${INSTALL_DATA} ${WRKSRC}/$${f} ${PREFIX}/${HTMLDIR}; \ done |