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 | 3960998c8ab5c40f0867195d006b67f0aa6947d8 (patch) | |
tree | 3d7cb8dbce0e3653dfb0e9893491b7273e4c64a7 /x11/py-Pmw | |
parent | 3e55057c677fa9b0173d2709f5b00835d7157d3a (diff) | |
download | pkgsrc-3960998c8ab5c40f0867195d006b67f0aa6947d8.tar.gz |
call xargs -n 1 when creating directories with install(1).
Diffstat (limited to 'x11/py-Pmw')
-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} |