diff options
author | minskim <minskim@pkgsrc.org> | 2005-11-10 16:49:28 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2005-11-10 16:49:28 +0000 |
commit | 8782fe7b0b738487ec1980558d095ce5a9881a3f (patch) | |
tree | 4ce0579f44c2b4abb70ddc652e768ac70caf8ea5 /print/tex-prosper | |
parent | 0b5fc8af1d9314ae2354b3cadcb1f7f305540489 (diff) | |
download | pkgsrc-8782fe7b0b738487ec1980558d095ce5a9881a3f.tar.gz |
Avoid using the -printx primary for find(1); it is not supported on
Darwin.
Diffstat (limited to 'print/tex-prosper')
-rw-r--r-- | print/tex-prosper/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/print/tex-prosper/Makefile b/print/tex-prosper/Makefile index d2fc9a2335d..90a72f846b4 100644 --- a/print/tex-prosper/Makefile +++ b/print/tex-prosper/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2005/11/08 21:45:01 tonio Exp $ +# $NetBSD: Makefile,v 1.7 2005/11/10 16:49:28 minskim Exp $ # DISTNAME= prosper-1.00.4 @@ -27,7 +27,7 @@ EGDIR= ${LOCALBASE}/share/examples/tex-prosper post-extract: ${MV} ${WRKDIR}/PPRblends.sty ${WRKSRC}/contrib ${MV} ${WRKSRC}/doc/doc-examples ${WRKSRC}/examples - ${FIND} ${WRKSRC} -name CVS -printx | ${XARGS} ${RM} -rf + ${FIND} ${WRKSRC} -name CVS -print0 | ${XARGS} -0 ${RM} -rf do-install: ${INSTALL_DATA_DIR} ${PROSPERDIR} |