diff options
author | hsu <hsu@FreeBSD.org> | 1995-02-06 16:52:19 +0800 |
---|---|---|
committer | hsu <hsu@FreeBSD.org> | 1995-02-06 16:52:19 +0800 |
commit | 4e3d09886377926b91be6c21ef014d478982c66f (patch) | |
tree | 98f6a98d9aa78c98b304c7b48521fd52e1ee0831 /Mk | |
parent | 217cc58f11a47bf94126f5d38c3280b5604e0439 (diff) | |
download | freebsd-ports-gnome-4e3d09886377926b91be6c21ef014d478982c66f.tar.gz freebsd-ports-gnome-4e3d09886377926b91be6c21ef014d478982c66f.tar.zst freebsd-ports-gnome-4e3d09886377926b91be6c21ef014d478982c66f.zip |
Allow arbitrarily named configure script for use w/ HAS_CONFIGURE.
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.port.mk | 7 |
1 files changed, 5 insertions, 2 deletions
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) |