diff options
author | tron <tron@pkgsrc.org> | 2001-02-05 09:00:54 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2001-02-05 09:00:54 +0000 |
commit | f2d262e0bef754371e35855c069d92d11d7759bb (patch) | |
tree | 2c1d493d315c86d062bda624e834a3d6f66707c0 /net/zebra | |
parent | 338eba73e20d12e6e7ee7489e26135aaeaef3369 (diff) | |
download | pkgsrc-f2d262e0bef754371e35855c069d92d11d7759bb.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 'net/zebra')
-rw-r--r-- | net/zebra/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/net/zebra/Makefile b/net/zebra/Makefile index 34a03b43646..6c44f9515ac 100644 --- a/net/zebra/Makefile +++ b/net/zebra/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.31 2001/02/03 09:45:16 itojun Exp $ +# $NetBSD: Makefile,v 1.32 2001/02/05 09:01:02 tron Exp $ # Based on KAME Id: Makefile,v 1.1.2.1.2.1.10.2 1999/01/05 11:03:50 itojun Exp # @@ -11,8 +11,8 @@ MASTER_SITES= ftp://ftp.zebra.org/pub/zebra/ MAINTAINER= itojun@itojun.org HOMEPAGE= http://www.zebra.org/ -BUILD_DEPENDS+= automake:../../devel/automake -BUILD_DEPENDS+= autoreconf:../../devel/autoconf +BUILD_DEPENDS+= ${LOCALBASE}/bin/automake:../../devel/automake +BUILD_DEPENDS+= ${LOCALBASE}/bin/autoremake:../../devel/autoconf .include "../../mk/bsd.prefs.mk" @@ -51,8 +51,8 @@ post-patch: ${ECHO} '@dirrm share/examples/zebra' >>${PLIST_SRC} pre-configure: - cd ${WRKSRC} && autoreconf -# cd ${WRKSRC} && automake + cd ${WRKSRC} && ${LOCALBASE}/bin/autoremake +# cd ${WRKSRC} && ${LOCALBASE}/bin/automake #post-build: # cd ${WRKSRC}/doc ; \ |