Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 16 Nov 2011 20:18:25 +0000 (UTC)
From:      "David E. O'Brien" <obrien@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r227585 - projects/jbuild/usr.bin/jbuild/filemon/test
Message-ID:  <201111162018.pAGKIP1w065113@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: obrien
Date: Wed Nov 16 20:18:25 2011
New Revision: 227585
URL: http://svn.freebsd.org/changeset/base/227585

Log:
  * Don't need to add -Werror, WARNS does that.
  * Avoid needless exec.

Modified:
  projects/jbuild/usr.bin/jbuild/filemon/test/Makefile

Modified: projects/jbuild/usr.bin/jbuild/filemon/test/Makefile
==============================================================================
--- projects/jbuild/usr.bin/jbuild/filemon/test/Makefile	Wed Nov 16 20:17:26 2011	(r227584)
+++ projects/jbuild/usr.bin/jbuild/filemon/test/Makefile	Wed Nov 16 20:18:25 2011	(r227585)
@@ -5,11 +5,10 @@ PROG=	filemontest
 NO_MAN=
 
 WARNS?=	6
-CFLAGS=	-Werror
 CFLAGS+= -I${.CURDIR}/..
 
-test: ${PROG}
-	@cd ${.CURDIR} ; ${MAKE} clean-test
+# Cannot use .OBJDIR -- 'filemontest' expects 'test_script.sh' in .
+test: ${PROG} clean-test
 	cd ${.CURDIR} ; \
 		for A in 1 2 3 4 5 6 7 8 9 0; do \
 		for B in 1 2 3 4 5 6 7 8 9 0; do \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201111162018.pAGKIP1w065113>