diff options
author | jlam <jlam> | 2001-06-13 15:51:46 +0000 |
---|---|---|
committer | jlam <jlam> | 2001-06-13 15:51:46 +0000 |
commit | db9683f65b66de4c144e4895d8b2431de5da292f (patch) | |
tree | 44584e801a0e21fbd1ef469128fd8ce6acc756ef | |
parent | 6dc9485cb5424c2d086889fe15e7c76314b650dc (diff) | |
download | pkgsrc-db9683f65b66de4c144e4895d8b2431de5da292f.tar.gz |
Just define POSTGRES_HOME in the environment instead of both
POSTGRES_INCLUDE and POSTGRES_LIB.
-rw-r--r-- | databases/p5-postgresql/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/databases/p5-postgresql/Makefile b/databases/p5-postgresql/Makefile index 68ea9ed23ca..28261fe073e 100644 --- a/databases/p5-postgresql/Makefile +++ b/databases/p5-postgresql/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2001/06/13 15:23:14 rh Exp $ +# $NetBSD: Makefile,v 1.3 2001/06/13 15:51:46 jlam Exp $ DISTNAME= pgsql_perl5-1.9.0 PKGNAME= p5-postgresql-1.9.0 @@ -17,9 +17,7 @@ PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/Pg/.packlist # Until the source catches up to the current Perl API, we need PERL_POLLUTE # to look like an older perl. MAKE_PARAMS= DEFINE="-DPERL_POLLUTE=1" -MAKE_PARAMS= POSTGRES_HOME="${LOCALBASE}" -MAKE_ENV+= POSTGRES_INCLUDE="${LOCALBASE}/include/pgsql" -MAKE_ENV+= POSTGRES_LIB="${LOCALBASE}/lib" +MAKE_ENV+= POSTGRES_HOME="${LOCALBASE}" do-configure: @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL ${MAKE_PARAMS} |