Allow brave souls to install bsdtar as the

default "tar" command by defining WITH_BSDTAR.

Note: "gtar" and "bsdtar" commands both exist regardless.
This commit is contained in:
Tim Kientzle 2004-04-19 22:09:04 +00:00
parent ec8ffccbdc
commit 97c4c5308b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=128446

View File

@ -6,5 +6,10 @@ WARNS?= 6
DPADD= ${LIBARCHIVE} ${LIBBZ2} ${LIBZ}
LDADD= -larchive -lbz2 -lz
.if defined(WITH_BSDTAR)
LINKS= ${BINDIR}/bsdtar ${BINDIR}/tar
MLINKS= bsdtar.1 tar.1
.endif
.include <bsd.prog.mk>