diff options
author | jlam <jlam@pkgsrc.org> | 2001-02-10 22:37:47 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-02-10 22:37:47 +0000 |
commit | aa2e62587ec599de7579071bdbd53ef39439dc43 (patch) | |
tree | c2a1a6e110aef4d291c0d00ce59e5ab44396b489 /databases/postgresql | |
parent | c2b9b934705d095f0512d80be06981acf1077c51 (diff) | |
download | pkgsrc-aa2e62587ec599de7579071bdbd53ef39439dc43.tar.gz |
s/autoreconf/${LOCALBASE}/bin/autoreconf. This was apparently missed in
the previous sweep for such changes (perhaps other Makefile.common files
also?).
Diffstat (limited to 'databases/postgresql')
-rw-r--r-- | databases/postgresql/Makefile.common | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/databases/postgresql/Makefile.common b/databases/postgresql/Makefile.common index e7d327763f7..ef1761cc3ca 100644 --- a/databases/postgresql/Makefile.common +++ b/databases/postgresql/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.7 2000/12/11 16:43:11 jlam Exp $ +# $NetBSD: Makefile.common,v 1.8 2001/02/10 22:37:47 jlam Exp $ # # This file is included by the following packages: # @@ -21,7 +21,7 @@ MASTER_SITES= ftp://ftp.PostgreSQL.org/pub/v${PG_VERS}/ \ MAINTAINER= jlam@netbsd.org HOMEPAGE= http://www.PostgreSQL.ORG/ -BUILD_DEPENDS+= autoreconf:../../devel/autoconf +BUILD_DEPENDS+= ${LOCALBASE}/bin/autoreconf:../../devel/autoconf USE_GMAKE= # defined GNU_CONFIGURE= # defined @@ -58,4 +58,4 @@ post-extract: ${CP} ${FILESDIR}/Makefile.custom ${WRKSRC} pre-configure: - cd ${WRKSRC} && autoreconf + cd ${WRKSRC} && ${LOCALBASE}/bin/autoreconf |