diff options
author | tnn <tnn@pkgsrc.org> | 2007-04-25 11:15:02 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2007-04-25 11:15:02 +0000 |
commit | 23b326b23c52a0e51047a8bd684fc8ff5d03bdf5 (patch) | |
tree | 68b4bcf10ad5eb3543feadc501103ede94048a86 /pkgtools | |
parent | b4006ad92d4284fd6cfe5ff47ac4331786667d0c (diff) | |
download | pkgsrc-23b326b23c52a0e51047a8bd684fc8ff5d03bdf5.tar.gz |
tidy up loop
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/posix_headers/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgtools/posix_headers/Makefile b/pkgtools/posix_headers/Makefile index a88633422aa..e13a5ca9d64 100644 --- a/pkgtools/posix_headers/Makefile +++ b/pkgtools/posix_headers/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2007/04/24 23:12:44 tnn Exp $ +# $NetBSD: Makefile,v 1.3 2007/04/25 11:15:02 tnn Exp $ DISTNAME= posix_headers-0.4 PKGREVISION= 1 @@ -42,9 +42,9 @@ do-build: .endfor do-install: - for h in ${POSIX_HEADERS.${OPSYS}}; do \ - ${INSTALL_DATA} ${WRKSRC}/"$$h" ${PREFIX}/include/"$$h"; \ - ${ECHO} include/"$$h" >> ${PLIST_SRC}; \ - done +.for header in ${POSIX_HEADERS.${OPSYS}} + ${INSTALL_DATA} ${WRKSRC}/${header} ${PREFIX}/include/${header} + ${ECHO} include/${header} >> ${PLIST_SRC} +.endfor .include "../../mk/bsd.pkg.mk" |