diff options
author | jlam <jlam@pkgsrc.org> | 2005-05-14 21:15:07 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-05-14 21:15:07 +0000 |
commit | b37e6d4830f355df0e0b17b933e8164a322443ec (patch) | |
tree | abb61edb38473cf587b49a23812a600f1d00bca9 /mk/tools/tools.DragonFly.mk | |
parent | 38fd1994c1eb814a61c76d9aa81359a715b8754d (diff) | |
download | pkgsrc-b37e6d4830f355df0e0b17b933e8164a322443ec.tar.gz |
Consider ${TAR} differently from ${GTAR}. Currently, mark pkgsrc down
as needing both (no impact since they're both satisfied by the tar
binary installed by the bootstrap kit). There's some funniness in
the extraction code where we check for pax or GNU tar that needs to
be resolved. Remove the TAR=${GTAR} hack since it's no longer needed
after these changes.
XXX Later, a sweep needs to be made to see where we actually need GTAR
XXX and where we only need TAR, probably triggered by whether we call it
XXX with the "z" option or not. Packages that need GTAR should explicitly
XXX add USE_TOOLS+=gtar to the package Makefile.
Diffstat (limited to 'mk/tools/tools.DragonFly.mk')
-rw-r--r-- | mk/tools/tools.DragonFly.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mk/tools/tools.DragonFly.mk b/mk/tools/tools.DragonFly.mk index d7057d5224c..ba396ef19ac 100644 --- a/mk/tools/tools.DragonFly.mk +++ b/mk/tools/tools.DragonFly.mk @@ -1,4 +1,4 @@ -# $NetBSD: tools.DragonFly.mk,v 1.10 2005/05/10 19:56:51 jlam Exp $ +# $NetBSD: tools.DragonFly.mk,v 1.11 2005/05/14 21:15:07 jlam Exp $ # # System-supplied tools for the DragonFly operating system. @@ -53,6 +53,7 @@ TOOLS_PLATFORM.shlock?= /usr/bin/shlock TOOLS_PLATFORM.sort?= /usr/bin/sort TOOLS_PLATFORM.strip?= /usr/bin/strip TOOLS_PLATFORM.tail?= /usr/bin/tail +TOOLS_PLATFORM.tar?= /usr/bin/tar TOOLS_PLATFORM.tbl?= /usr/bin/tbl TOOLS_PLATFORM.tee?= /usr/bin/tee TOOLS_PLATFORM.test?= /bin/test |