From 9de2b11e756d59d41fc4228b0f5a626ea495407c Mon Sep 17 00:00:00 2001 From: Jeffrey Hsu Date: Mon, 6 Feb 1995 08:52:19 +0000 Subject: Allow arbitrarily named configure script for use w/ HAS_CONFIGURE. --- Mk/bsd.port.mk | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'Mk/bsd.port.mk') diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index af1f0a2abaa7..f837530c8a38 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -3,7 +3,7 @@ # bsd.port.mk - 940820 Jordan K. Hubbard. # This file is in the public domain. # -# $Id: bsd.port.mk,v 1.110 1995/02/04 05:49:26 asami Exp $ +# $Id: bsd.port.mk,v 1.111 1995/02/04 22:56:28 phk Exp $ # # Please view me with 4 column tabs! @@ -70,6 +70,7 @@ # target. # HAS_CONFIGURE - Says that the port has its own configure script. # GNU_CONFIGURE - Set if you are using GNU configure (optional). +# CONFIGURE_SCRIPT - Name of configure script, defaults to 'configure'. # CONFIGURE_ARGS - Pass these args to configure, if ${HAS_CONFIGURE} set. # IS_INTERACTIVE - Set this if your port needs to interact with the user # during a build. User can then decide to skip this port by @@ -223,6 +224,8 @@ PKGFILE?= ${PACKAGES}/${PKGNAME}${PKG_SUFX} PKGFILE?= ${PKGNAME}${PKG_SUFX} .endif +CONFIGURE_SCRIPT?= configure + .if defined(GNU_CONFIGURE) CONFIGURE_ARGS?= --prefix=${PREFIX} HAS_CONFIGURE= yes @@ -534,7 +537,7 @@ ${CONFIGURE_COOKIE}: @(cd ${WRKSRC}; CC="${CC}" ac_cv_path_CC="${CC}" CFLAGS="${CFLAGS}" \ INSTALL="/usr/bin/install -c -o ${BINOWN} -g ${BINGRP}" \ INSTALL_PROGRAM="/usr/bin/install ${COPY} ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE}" \ - ./configure ${CONFIGURE_ARGS}) + ./${CONFIGURE_SCRIPT} ${CONFIGURE_ARGS}) .endif .if defined(USE_IMAKE) .if defined(USE_GMAKE) -- cgit v1.2.3