diff options
author | grant <grant@pkgsrc.org> | 2004-06-12 08:58:50 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-06-12 08:58:50 +0000 |
commit | 292460a4bb675a6e32a474c0092709235e29b8c6 (patch) | |
tree | 3d7cb8dbce0e3653dfb0e9893491b7273e4c64a7 /x11/py-Pmw/Makefile | |
parent | febe46281ea01d9bc791c21ba5d9d3cd2e8a0e20 (diff) | |
download | pkgsrc-292460a4bb675a6e32a474c0092709235e29b8c6.tar.gz |
call xargs -n 1 when creating directories with install(1).
Diffstat (limited to 'x11/py-Pmw/Makefile')
-rw-r--r-- | x11/py-Pmw/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11/py-Pmw/Makefile b/x11/py-Pmw/Makefile index fce1dee6eb3..2d90b428b8c 100644 --- a/x11/py-Pmw/Makefile +++ b/x11/py-Pmw/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2004/05/30 02:19:16 snj Exp $ +# $NetBSD: Makefile,v 1.15 2004/06/12 08:58:50 grant Exp $ # DISTNAME= Pmw.0.8.5 @@ -19,7 +19,7 @@ do-build: do-install: (cd ${WRKDIR}; ${FIND} Pmw -type d -print | \ - ${SED} -e 's,^,${PREFIX}/${PYSITELIB}/,' | ${XARGS} ${INSTALL_DATA_DIR}) + ${SED} -e 's,^,${PREFIX}/${PYSITELIB}/,' | ${XARGS} -n 1 ${INSTALL_DATA_DIR}) (cd ${WRKDIR}; for f in `${FIND} Pmw -type f -print`; do \ ${INSTALL_DATA} $$f ${PREFIX}/${PYSITELIB}/$$f; done) ${CAT} ${PKGDIR}/PLIST.pre >${PLIST_SRC} |