diff options
author | Andreas Klemm <andreas@FreeBSD.org> | 1996-07-27 11:54:30 +0000 |
---|---|---|
committer | Andreas Klemm <andreas@FreeBSD.org> | 1996-07-27 11:54:30 +0000 |
commit | 56a6c2504100a6c29502f6ee6b8f72fe2ba514bc (patch) | |
tree | c39e8da7c2db7edbd578a946171cf07cca90b56a /Mk | |
parent | This patch fixes a bug in the NAS port included with 2.1R. (diff) |
Fixed bug, that CONFIGURE_SCRIPT in a port's Makefile doesn't have
any effect. The target do-configure used ${SCRIPTDIR}/configure
instead of ${SCRIPTDIR}/${CONFIGURE_SCRIPT}.
-andreas
Notes
Notes:
svn path=/head/; revision=3435
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.port.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index d987d682b382..7bcf2599a759 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.215 1996/06/26 21:12:28 gpalmer Exp $ +# $Id: bsd.port.mk,v 1.216 1996/07/05 06:12:12 jkh Exp $ # # Please view me with 4 column tabs! @@ -685,12 +685,12 @@ do-patch: .if !target(do-configure) do-configure: - @if [ -f ${SCRIPTDIR}/configure ]; then \ + @if [ -f ${SCRIPTDIR}/${CONFIGURE_SCRIPT} ]; then \ cd ${.CURDIR} && ${SETENV} CURDIR=${.CURDIR} DISTDIR=${DISTDIR}\ WRKDIR=${WRKDIR} WRKSRC=${WRKSRC} PATCHDIR=${PATCHDIR} \ SCRIPTDIR=${SCRIPTDIR} FILESDIR=${FILESDIR} \ PORTSDIR=${PORTSDIR} PREFIX=${PREFIX} DEPENDS="${DEPENDS}" \ - X11BASE=${X11BASE} /bin/sh ${SCRIPTDIR}/configure; \ + X11BASE=${X11BASE} /bin/sh ${SCRIPTDIR}/${CONFIGURE_SCRIPT}; \ fi .if defined(HAS_CONFIGURE) @(cd ${WRKSRC} && CC="${CC}" ac_cv_path_CC="${CC}" CFLAGS="${CFLAGS}" \ |