diff options
author | joerg <joerg@pkgsrc.org> | 2005-12-30 23:47:48 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2005-12-30 23:47:48 +0000 |
commit | 36b1417ad428e5f81a1db07d3651561dfc3aa663 (patch) | |
tree | c6971cc1767b7e0d7788e40e022dcd819446b6f1 /graphics/vtk-docs | |
parent | 27f1f402e983b9eb42c2559e8f09cc380f809d65 (diff) | |
download | pkgsrc-36b1417ad428e5f81a1db07d3651561dfc3aa663.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/Makefile | 4 |
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" |