diff options
| author | Martin Matuska <mm@FreeBSD.org> | 2016-05-12 10:16:16 +0000 |
|---|---|---|
| committer | Martin Matuska <mm@FreeBSD.org> | 2016-05-12 10:16:16 +0000 |
| commit | cdf63a700c77204252e3c2e38d7106965559f3c6 (patch) | |
| tree | b8221b5b091ffc72b700d5da57daaa86ae023d82 /usr.bin/tar | |
| parent | 15c98ff2f1159f39e6c8fc585893734e4f74aa81 (diff) | |
| parent | 4e579f6c9425c995106fbf72667f4ec7e5d5db85 (diff) | |
Notes
Diffstat (limited to 'usr.bin/tar')
| -rw-r--r-- | usr.bin/tar/Makefile | 5 | ||||
| -rw-r--r-- | usr.bin/tar/tests/Makefile | 7 |
2 files changed, 10 insertions, 2 deletions
diff --git a/usr.bin/tar/Makefile b/usr.bin/tar/Makefile index 8ac2005caa03b..1ee7bc5ea75bd 100644 --- a/usr.bin/tar/Makefile +++ b/usr.bin/tar/Makefile @@ -4,7 +4,7 @@ _LIBARCHIVEDIR= ${.CURDIR}/../../contrib/libarchive PROG= bsdtar -BSDTAR_VERSION_STRING= 3.1.2 +BSDTAR_VERSION_STRING= 3.2.0 .PATH: ${_LIBARCHIVEDIR}/tar SRCS= bsdtar.c \ @@ -17,7 +17,8 @@ SRCS= bsdtar.c \ .PATH: ${_LIBARCHIVEDIR}/libarchive_fe SRCS+= err.c \ - line_reader.c + line_reader.c \ + passphrase.c LIBADD= archive diff --git a/usr.bin/tar/tests/Makefile b/usr.bin/tar/tests/Makefile index 588aa4d75d518..58c11cfe12e3f 100644 --- a/usr.bin/tar/tests/Makefile +++ b/usr.bin/tar/tests/Makefile @@ -30,11 +30,13 @@ TESTS_SRCS= \ test_extract_tar_gz.c \ test_extract_tar_lrz.c \ test_extract_tar_lz.c \ + test_extract_tar_lz4.c \ test_extract_tar_lzma.c \ test_extract_tar_lzo.c \ test_extract_tar_xz.c \ test_format_newc.c \ test_help.c \ + test_leading_slash.c \ test_option_C_upper.c \ test_option_H_upper.c \ test_option_L_upper.c \ @@ -52,12 +54,14 @@ TESTS_SRCS= \ test_option_k.c \ test_option_keep_newer_files.c \ test_option_lrzip.c \ + test_option_lz4.c \ test_option_lzma.c \ test_option_lzop.c \ test_option_n.c \ test_option_newer_than.c \ test_option_nodump.c \ test_option_older_than.c \ + test_option_passphrase.c \ test_option_q.c \ test_option_r.c \ test_option_s.c \ @@ -95,10 +99,13 @@ ${PACKAGE}FILES+= test_extract.tar.grz.uu ${PACKAGE}FILES+= test_extract.tar.gz.uu ${PACKAGE}FILES+= test_extract.tar.lrz.uu ${PACKAGE}FILES+= test_extract.tar.lz.uu +${PACKAGE}FILES+= test_extract.tar.lz4.uu ${PACKAGE}FILES+= test_extract.tar.lzma.uu ${PACKAGE}FILES+= test_extract.tar.lzo.uu ${PACKAGE}FILES+= test_extract.tar.xz.uu +${PACKAGE}FILES+= test_leading_slash.tar.uu ${PACKAGE}FILES+= test_option_keep_newer_files.tar.Z.uu +${PACKAGE}FILES+= test_option_passphrase.zip.uu ${PACKAGE}FILES+= test_option_s.tar.Z.uu ${PACKAGE}FILES+= test_patterns_2.tar.uu ${PACKAGE}FILES+= test_patterns_3.tar.uu |
