summaryrefslogtreecommitdiff
path: root/Mk/bsd.port.mk
diff options
context:
space:
mode:
authorJeffrey Hsu <hsu@FreeBSD.org>1995-02-06 08:52:19 +0000
committerJeffrey Hsu <hsu@FreeBSD.org>1995-02-06 08:52:19 +0000
commit9de2b11e756d59d41fc4228b0f5a626ea495407c (patch)
tree7027b8c3ba4bcbb78f7e30e5ca17020d26a5f44a /Mk/bsd.port.mk
parentUpgrade to version 3.4d (diff)
Allow arbitrarily named configure script for use w/ HAS_CONFIGURE.
Notes
Notes: svn path=/head/; revision=897
Diffstat (limited to 'Mk/bsd.port.mk')
-rw-r--r--Mk/bsd.port.mk7
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)