diff options
author | asami <asami@FreeBSD.org> | 1996-09-24 14:48:22 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1996-09-24 14:48:22 +0800 |
commit | 7e5191f27771859948528cbc214e9e9f301bc9c3 (patch) | |
tree | 070e18198e48af0911c658c7b821bffa9226726b /Mk | |
parent | f43f2ff6b60da6ca475d509a1bacbaa9af49dcb2 (diff) | |
download | freebsd-ports-gnome-7e5191f27771859948528cbc214e9e9f301bc9c3.tar.gz freebsd-ports-gnome-7e5191f27771859948528cbc214e9e9f301bc9c3.tar.zst freebsd-ports-gnome-7e5191f27771859948528cbc214e9e9f301bc9c3.zip |
Back out changes in rev. 1.217 -- ${CONFIGURE_SCRIPT} is not
meant to rename the name of script in ${SCRIPTDIR}.
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 2ccee9c07a3c..75c30c8d8c6d 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.224 1996/08/25 21:07:38 wosch Exp $ +# $Id: bsd.port.mk,v 1.225 1996/09/23 09:27:59 asami Exp $ # # Please view me with 4 column tabs! @@ -709,12 +709,12 @@ do-patch: .if !target(do-configure) do-configure: - @if [ -f ${SCRIPTDIR}/${CONFIGURE_SCRIPT} ]; then \ + @if [ -f ${SCRIPTDIR}/configure ]; 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_SCRIPT}; \ + X11BASE=${X11BASE} /bin/sh ${SCRIPTDIR}/configure; \ fi .if defined(HAS_CONFIGURE) @(cd ${WRKSRC} && CC="${CC}" ac_cv_path_CC="${CC}" CFLAGS="${CFLAGS}" \ |