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.
This commit is contained in:
parent
61206e6661
commit
ae6246b519
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue