diff options
author | reed <reed@pkgsrc.org> | 2003-09-25 18:55:58 +0000 |
---|---|---|
committer | reed <reed@pkgsrc.org> | 2003-09-25 18:55:58 +0000 |
commit | e018735a4628bd6e7016f84845d62d7c96019a12 (patch) | |
tree | 8ffb66aec2e5e2dcb8f23c18ca009fb5413ceea8 /graphics/netpbm | |
parent | 6e6c448210b208afc3382d1153681ab5168eb737 (diff) | |
download | pkgsrc-e018735a4628bd6e7016f84845d62d7c96019a12.tar.gz |
Use pax instead of tar to copy files. (Okay'd by tron.)
In some cases, gtar had problems, like:
/bin/tar: share/doc/netpbm: Cannot unlink: Directory not empty
/bin/tar: share/netpbm: Cannot unlink: Directory not empty
Diffstat (limited to 'graphics/netpbm')
-rw-r--r-- | graphics/netpbm/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/netpbm/Makefile b/graphics/netpbm/Makefile index 9c690a8d688..ffee9b450ac 100644 --- a/graphics/netpbm/Makefile +++ b/graphics/netpbm/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.80 2003/09/17 19:40:35 grant Exp $ +# $NetBSD: Makefile,v 1.81 2003/09/25 18:55:58 reed Exp $ DISTNAME= netpbm-10.11.8 CATEGORIES= graphics @@ -60,7 +60,7 @@ post-install: ${TEST} -d "${PREFIX}/$${DIR}" || \ ${ECHO} "@dirrm $${DIR}"; \ done >>${PLIST_SRC} && \ - ${GTAR} -cf - * | ${GTAR} -xpC ${PREFIX} -f - + ${PAX} -rw . ${PREFIX} ${RM} -fr ${STAGEDIR} .include "../../graphics/png/buildlink2.mk" |