summaryrefslogtreecommitdiff
path: root/graphics/vtk-docs
diff options
context:
space:
mode:
authorjoerg <joerg>2005-12-30 23:47:48 +0000
committerjoerg <joerg>2005-12-30 23:47:48 +0000
commitb3252a86b8acfccb3999b9b3a56e3a9d3c2c2486 (patch)
treec6971cc1767b7e0d7788e40e022dcd819446b6f1 /graphics/vtk-docs
parentcb0ff76bc962be522956acaaf165053f1e0afc3f (diff)
downloadpkgsrc-b3252a86b8acfccb3999b9b3a56e3a9d3c2c2486.tar.gz
Use find instead of pax -rw, the latter overflows the argument buffer
on DragonFly.
Diffstat (limited to 'graphics/vtk-docs')
-rw-r--r--graphics/vtk-docs/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/vtk-docs/Makefile b/graphics/vtk-docs/Makefile
index 2dc6275bdcb..48731565b1e 100644
--- a/graphics/vtk-docs/Makefile
+++ b/graphics/vtk-docs/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 2005/09/28 20:52:23 rillig Exp $
+# $NetBSD: Makefile,v 1.3 2005/12/30 23:47:48 joerg Exp $
#
DISTNAME= VTKDocHtml-4.2
@@ -12,7 +12,7 @@ HTML_DIR= share/doc/${PKGNAME}
do-install:
${INSTALL_DATA_DIR} ${PREFIX}/${HTML_DIR}
- cd ${WRKSRC} && ${PAX} -rw -pe * ${PREFIX}/${HTML_DIR}
+ ${FIND} ${WRKSRC} -type f -exec ${INSTALL_DATA} {} ${PREFIX}/${HTML_DIR} \;
.include "../../graphics/vtk/Makefile.common"