pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/graphics/vtk-docs Use find instead of pax -rw, the lat...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/dbc564a9adf5
branches:  trunk
changeset: 505137:dbc564a9adf5
user:      joerg <joerg%pkgsrc.org@localhost>
date:      Fri Dec 30 23:47:48 2005 +0000

description:
Use find instead of pax -rw, the latter overflows the argument buffer
on DragonFly.

diffstat:

 graphics/vtk-docs/Makefile |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 9b05d7c2f744 -r dbc564a9adf5 graphics/vtk-docs/Makefile
--- a/graphics/vtk-docs/Makefile        Fri Dec 30 23:39:28 2005 +0000
+++ b/graphics/vtk-docs/Makefile        Fri Dec 30 23:47:48 2005 +0000
@@ -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 @@
 
 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"
 



Home | Main Index | Thread Index | Old Index