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 /textproc | |
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 'textproc')
-rw-r--r-- | textproc/eperl/Makefile | 6 | ||||
-rw-r--r-- | textproc/kdoc/Makefile | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/textproc/eperl/Makefile b/textproc/eperl/Makefile index da71e49c84b..9ec48d3d271 100644 --- a/textproc/eperl/Makefile +++ b/textproc/eperl/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2000/08/27 07:11:21 jlam Exp $ +# $NetBSD: Makefile,v 1.5 2001/02/05 09:01:04 tron Exp $ # DISTNAME= eperl-2.2.14 @@ -8,7 +8,7 @@ MASTER_SITES= http://www.engelschall.com/sw/eperl/distrib/ MAINTAINER= packages@netbsd.org HOMEPAGE= http://www.engelschall.com/sw/eperl/ -BUILD_DEPENDS+= autoreconf:../../devel/autoconf +BUILD_DEPENDS+= ${LOCALBASE}/bin/autoremake:../../devel/autoconf DEPENDS= libperl-5.*:../../lang/libperl USE_PERL5= # defined @@ -18,7 +18,7 @@ GNU_CONFIGURE= # defined ALL_TARGET= all libeperl.a pre-configure: - cd ${WRKSRC} && autoreconf + cd ${WRKSRC} && ${LOCALBASE}/bin/autoremake post-build: cd ${WRKSRC}/mod/Parse; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL diff --git a/textproc/kdoc/Makefile b/textproc/kdoc/Makefile index d9d8c35dc8d..34e62dcf5e9 100644 --- a/textproc/kdoc/Makefile +++ b/textproc/kdoc/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2000/12/20 08:54:17 skrll Exp $ +# $NetBSD: Makefile,v 1.3 2001/02/05 09:01:04 tron Exp $ # DISTNAME= kdoc-2.0.1b @@ -12,13 +12,13 @@ EXTRACT_SUFX= .tar.bz2 MAINTAINER= wulf@netbsd.org HOMEPAGE= http://www.kde.org/ -BUILD_DEPENDS+= autoconf:../../devel/autoconf +BUILD_DEPENDS+= ${LOCALBASE}/bin/autoconf:../../devel/autoconf USE_PERL5= yes USE_GMAKE= yes GNU_CONFIGURE= yes pre-configure: - cd ${WRKSRC} && autoconf + cd ${WRKSRC} && ${LOCALBASE}/bin/autoconf .include "../../mk/bsd.pkg.mk" |