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 /math/rlab | |
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 'math/rlab')
-rw-r--r-- | math/rlab/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/math/rlab/Makefile b/math/rlab/Makefile index d8311f2c353..f8a2b5da0c6 100644 --- a/math/rlab/Makefile +++ b/math/rlab/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2001/02/02 02:06:43 jtb Exp $ +# $NetBSD: Makefile,v 1.4 2001/02/05 09:01:00 tron Exp $ DISTNAME= rlab-2.1.05 CATEGORIES= math @@ -10,7 +10,7 @@ HOMEPAGE= http://rlab.sourceforge.net/ DEPENDS+= boehm-gc>=5.3:../../devel/boehm-gc DEPENDS+= readline>=4.0:../../devel/readline DEPENDS+= superlu-[0-9]*:../../math/superlu -BUILD_DEPENDS+= autoconf:../../devel/autoconf +BUILD_DEPENDS+= ${LOCALBASE}/bin/autoconf:../../devel/autoconf GNU_CONFIGURE= YES USE_FORTRAN= YES @@ -47,7 +47,7 @@ PLIST_SRC+= ${PKGDIR}/PLIST.gnuplot .endif pre-configure: - (cd ${WRKSRC} && autoconf) + (cd ${WRKSRC} && ${LOCALBASE}/bin/autoconf) post-install: .if (${RLAB_PLOT_PKG} == "pgraf") |