diff options
author | joerg <joerg> | 2005-12-30 23:47:48 +0000 |
---|---|---|
committer | joerg <joerg> | 2005-12-30 23:47:48 +0000 |
commit | 444c90f2d830addbb4e328cea3d1e5b15bb0b74a (patch) | |
tree | c6971cc1767b7e0d7788e40e022dcd819446b6f1 | |
parent | 8650f627a8f994274e3e78b657a5f2f3795700de (diff) | |
download | pkgsrc-444c90f2d830addbb4e328cea3d1e5b15bb0b74a.tar.gz |
Use find instead of pax -rw, the latter overflows the argument buffer
on DragonFly.
-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" |