From 4e35f82f324afe36c61d27a70d50ba0dc33d6697 Mon Sep 17 00:00:00 2001 From: espie Date: Sun, 6 Apr 2003 14:34:36 +0000 Subject: [PATCH] do not duplicate gnu in CONFIGURE_STYLE if it's already there. Useful when one wants a specific CONFIGURE_STYLE order and thus specifies gnu explicitly, e.g., CONFIGURE_STYLE=autoconf gnu imake --- infrastructure/mk/bsd.port.mk | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/infrastructure/mk/bsd.port.mk b/infrastructure/mk/bsd.port.mk index f5ed97f6044..52b2bbde7bf 100644 --- a/infrastructure/mk/bsd.port.mk +++ b/infrastructure/mk/bsd.port.mk @@ -1,6 +1,6 @@ #-*- mode: Fundamental; tab-width: 4; -*- # ex:ts=4 sw=4 filetype=make: -# $OpenBSD: bsd.port.mk,v 1.543 2003/03/02 17:54:27 pvalchev Exp $ +# $OpenBSD: bsd.port.mk,v 1.544 2003/04/06 14:34:36 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 $ # @@ -353,7 +353,9 @@ MAKE_PROGRAM= ${MAKE} .endif .if ${CONFIGURE_STYLE:L:Mautomake} || ${CONFIGURE_STYLE:L:Mautoconf} || ${CONFIGURE_STYLE:L:Mautoupdate} +. if !${CONFIGURE_STYLE:L:Mgnu} CONFIGURE_STYLE+=gnu +. endif .endif USE_LIBTOOL?=No