diff options
author | tron <tron> | 2001-02-05 09:00:54 +0000 |
---|---|---|
committer | tron <tron> | 2001-02-05 09:00:54 +0000 |
commit | 732964d7838ca5e8355397759068795660c65368 (patch) | |
tree | 2c1d493d315c86d062bda624e834a3d6f66707c0 /www/mozilla | |
parent | 81b3c0bc7a64ea4999e6fb86448d93a694ed442b (diff) | |
download | pkgsrc-732964d7838ca5e8355397759068795660c65368.tar.gz |
Use full pathname "${LOCALBASE}/bin/auto..." in dependences and make
targets. This includes a fix for PR pkg/12125 by Tomasz Luchowski.
Diffstat (limited to 'www/mozilla')
-rw-r--r-- | www/mozilla/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/mozilla/Makefile b/www/mozilla/Makefile index f6172796cfd..39c1f070cbc 100644 --- a/www/mozilla/Makefile +++ b/www/mozilla/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.53 2001/01/17 15:04:21 taya Exp $ +# $NetBSD: Makefile,v 1.54 2001/02/05 09:01:06 tron Exp $ DISTNAME= mozilla-source-0.7 PKGNAME= mozilla-0.7 @@ -11,7 +11,7 @@ MAINTAINER= packages@netbsd.org HOMEPAGE= http://www.mozilla.org/ BUILD_DEPENDS+= ${PERL5}:../../lang/perl5-base -BUILD_DEPENDS+= autoconf:../../devel/autoconf +BUILD_DEPENDS+= ${LOCALBASE}/bin/autoconf:../../devel/autoconf BUILD_DEPENDS+= zip:../../archivers/zip DEPENDS+= gtk+>=1.2.8:../../x11/gtk DEPENDS+= ORBit>=0.5.3:../../net/ORBit @@ -67,7 +67,7 @@ post-extract: .include "../../mk/bsd.prefs.mk" pre-configure: - (cd ${WRKSRC} && autoconf) + (cd ${WRKSRC} && ${LOCALBASE}/bin/autoconf) do-build: @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_PROGRAM} ${MAKE_FLAGS} |