Module Name:    src
Committed By:   rillig
Date:           Fri Aug 28 20:57:54 UTC 2020

Modified Files:
        src/usr.bin/make: Makefile

Log Message:
make(1): remove redundant MAKEFLAGS from subdir make

The make flags are passed via the environment, not via the command line.
This is not as obvious and visible, but it works.


To generate a diff of this commit:
cvs rdiff -u -r1.95 -r1.96 src/usr.bin/make/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/make/Makefile
diff -u src/usr.bin/make/Makefile:1.95 src/usr.bin/make/Makefile:1.96
--- src/usr.bin/make/Makefile:1.95	Thu Aug 27 19:09:37 2020
+++ src/usr.bin/make/Makefile	Fri Aug 28 20:57:54 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.95 2020/08/27 19:09:37 rillig Exp $
+#	$NetBSD: Makefile,v 1.96 2020/08/28 20:57:54 rillig Exp $
 #	@(#)Makefile	5.2 (Berkeley) 12/28/90
 
 PROG=	make
@@ -179,7 +179,7 @@ test: .MAKE
 .endif
 
 accept sync-mi: .MAKE
-	cd ${.CURDIR}/unit-tests && ${.MAKE} ${MAKEFLAGS} ${.TARGET}
+	cd ${.CURDIR}/unit-tests && ${.MAKE} ${.TARGET}
 
 retest:
 	${.MAKE} -C ${.CURDIR}/unit-tests cleandir

Reply via email to