diff options
author | mm <mm@FreeBSD.org> | 2011-07-17 21:52:55 +0000 |
---|---|---|
committer | mm <mm@FreeBSD.org> | 2011-07-17 21:52:55 +0000 |
commit | 3ea31a73ff82044669e975939fa1a08c13dd93c0 (patch) | |
tree | 9dc9b793e03283a062e72bd7cefa60c2bfefffaa /usr.bin/cpio | |
parent | 84c56da91a08ce9f1a669fa732a156e36b3ad358 (diff) | |
download | FreeBSD-src-3ea31a73ff82044669e975939fa1a08c13dd93c0.zip FreeBSD-src-3ea31a73ff82044669e975939fa1a08c13dd93c0.tar.gz |
Append to CPIO_SRCS instead of using TAR_SRCS,
the variable name is misleading
MFC after: 2 weeks
Diffstat (limited to 'usr.bin/cpio')
-rw-r--r-- | usr.bin/cpio/test/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/cpio/test/Makefile b/usr.bin/cpio/test/Makefile index 9bdf613..e1b94f1 100644 --- a/usr.bin/cpio/test/Makefile +++ b/usr.bin/cpio/test/Makefile @@ -7,7 +7,7 @@ CPIO_SRCDIR=${.CURDIR}/.. CPIO_SRCS= cmdline.c .PATH: ${.CURDIR}/../../../lib/libarchive/libarchive_fe -TAR_SRCS= err.c pathmatch.c +CPIO_SRCS+= err.c pathmatch.c TESTS= \ test_0.c \ @@ -40,7 +40,6 @@ TESTS= \ # Build the test program SRCS= list.h \ ${CPIO_SRCS} \ - ${TAR_SRCS} \ ${TESTS} \ main.c |