diff options
author | Tim Kientzle <kientzle@FreeBSD.org> | 2008-05-26 17:10:10 +0000 |
---|---|---|
committer | Tim Kientzle <kientzle@FreeBSD.org> | 2008-05-26 17:10:10 +0000 |
commit | eb36031906b623c41398f29df9178b5214a4c9fa (patch) | |
tree | d94d00fec531d1439aa528d7d109ac2166ab5295 /usr.bin/tar/Makefile | |
parent | fa07de5eeb36516701b3393f13acc1e1f702c634 (diff) |
MFp4: bsdtar 2.5.4b
In addition to a number of bug fixes and minor changes:
* --numeric-owner (ignore user/group names on create and extract)
* -S (sparsify files on extraction)
* -s (regex filename substitutions)
* Use new libarchive 'linkify' to get correct hardlink handling for
both old and new cpio formats
* Rework 'copy' test to be insensitive to readdir() filename ordering
Most of the credit for this work goes to Joerg Sonnenberger, who
has been duplicating features from NetBSD's 'pax' program.
Notes
Notes:
svn path=/head/; revision=179322
Diffstat (limited to 'usr.bin/tar/Makefile')
-rw-r--r-- | usr.bin/tar/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.bin/tar/Makefile b/usr.bin/tar/Makefile index b4fe8b53257b..5e898eb9a4c0 100644 --- a/usr.bin/tar/Makefile +++ b/usr.bin/tar/Makefile @@ -1,8 +1,8 @@ # $FreeBSD$ PROG= bsdtar -BSDTAR_VERSION_STRING=2.5.0b -SRCS= bsdtar.c getdate.y matching.c read.c siginfo.c tree.c util.c write.c +BSDTAR_VERSION_STRING=2.5.4b +SRCS= bsdtar.c getdate.y matching.c read.c siginfo.c subst.c tree.c util.c write.c WARNS?= 5 DPADD= ${LIBARCHIVE} ${LIBBZ2} ${LIBZ} LDADD= -larchive -lbz2 -lz @@ -12,7 +12,8 @@ CFLAGS+= -I${.CURDIR} SYMLINKS= bsdtar ${BINDIR}/tar MLINKS= bsdtar.1 tar.1 -check: $(PROG) +.PHONY: check test +check test: $(PROG) bsdtar.1.gz cd ${.CURDIR}/test && make clean test .include <bsd.prog.mk> |