svn commit: r224155 - head/usr.bin/cpio/test

Martin Matuska mm at FreeBSD.org
Sun Jul 17 21:52:56 UTC 2011


Author: mm
Date: Sun Jul 17 21:52:55 2011
New Revision: 224155
URL: http://svn.freebsd.org/changeset/base/224155

Log:
  Append to CPIO_SRCS instead of using TAR_SRCS,
  the variable name is misleading
  
  MFC after:	2 weeks

Modified:
  head/usr.bin/cpio/test/Makefile

Modified: head/usr.bin/cpio/test/Makefile
==============================================================================
--- head/usr.bin/cpio/test/Makefile	Sun Jul 17 21:42:22 2011	(r224154)
+++ head/usr.bin/cpio/test/Makefile	Sun Jul 17 21:52:55 2011	(r224155)
@@ -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
 


More information about the svn-src-head mailing list