Module Name:    src
Committed By:   rillig
Date:           Thu Aug 27 19:09:37 UTC 2020

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

Log Message:
make(1): pass the command-line variables to the subdir make


To generate a diff of this commit:
cvs rdiff -u -r1.94 -r1.95 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.94 src/usr.bin/make/Makefile:1.95
--- src/usr.bin/make/Makefile:1.94	Wed Aug 26 23:00:47 2020
+++ src/usr.bin/make/Makefile	Thu Aug 27 19:09:37 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.94 2020/08/26 23:00:47 rillig Exp $
+#	$NetBSD: Makefile,v 1.95 2020/08/27 19:09:37 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} ${.TARGET}
+	cd ${.CURDIR}/unit-tests && ${.MAKE} ${MAKEFLAGS} ${.TARGET}
 
 retest:
 	${.MAKE} -C ${.CURDIR}/unit-tests cleandir

Reply via email to