svn commit: r201480 - head/tools/regression/usr.bin

David E. O'Brien obrien at FreeBSD.org
Mon Jan 4 09:54:24 UTC 2010


Author: obrien
Date: Mon Jan  4 09:54:24 2010
New Revision: 201480
URL: http://svn.freebsd.org/changeset/base/201480

Log:
  Don't process 'lastcomm' if "AUTOMATED" is defined.
  The tests for it require manual setup.

Modified:
  head/tools/regression/usr.bin/Makefile

Modified: head/tools/regression/usr.bin/Makefile
==============================================================================
--- head/tools/regression/usr.bin/Makefile	Mon Jan  4 09:50:30 2010	(r201479)
+++ head/tools/regression/usr.bin/Makefile	Mon Jan  4 09:54:24 2010	(r201480)
@@ -1,5 +1,8 @@
 # $FreeBSD$
 
-SUBDIR=	calendar comm file2c join jot m4 printf sed tr uudecode uuencode xargs lastcomm
+SUBDIR=	calendar comm file2c join jot m4 printf sed tr uudecode uuencode xargs
+.if !defined(AUTOMATED)
+SUBDIR+= lastcomm
+.endif
 
 .include <bsd.subdir.mk>


More information about the svn-src-head mailing list