In retrospect, just allow REGRESS_FLAGS. This would be redundant otherwise

This commit is contained in:
espie 2001-10-07 10:53:43 +00:00
parent e7fbc2b015
commit cc0048df1e

View File

@ -1,6 +1,6 @@
#-*- mode: Fundamental; tab-width: 4; -*-
# ex:ts=4 sw=4 filetype=make:
FULL_REVISION=$$OpenBSD: bsd.port.mk,v 1.472 2001/10/07 10:50:47 espie Exp $$
FULL_REVISION=$$OpenBSD: bsd.port.mk,v 1.473 2001/10/07 10:53:43 espie Exp $$
# $FreeBSD: bsd.port.mk,v 1.264 1996/12/25 02:27:44 imp Exp $
# $NetBSD: bsd.port.mk,v 1.62 1998/04/09 12:47:02 hubertf Exp $
#
@ -628,7 +628,6 @@ ERRORS+="Missing support for modules ${_m}."
.endfor
REGRESS_TARGET ?= regress
REGRESS_ENV ?= ${MAKE_ENV}
REGRESS_FLAGS ?= ${MAKE_FLAGS}
.if ${FAKE:L} == "yes"
@ -1677,7 +1676,7 @@ ${_REGRESS_COOKIE}: ${_BUILD_COOKIE}
@cd ${.CURDIR} && exec ${MAKE} do-regress
. else
# What REGRESS normally does:
@cd ${WRKBUILD} && exec ${SETENV} ${REGRESS_ENV} ${MAKE_PROGRAM} ${REGRESS_FLAGS} -f ${MAKE_FILE} ${REGRESS_TARGET}
@cd ${WRKBUILD} && exec ${SETENV} ${MAKE_ENV} ${MAKE_PROGRAM} ${REGRESS_FLAGS} -f ${MAKE_FILE} ${REGRESS_TARGET}
# End of REGRESS
. endif
. if target(post-regress)