diff options
author | tron <tron@pkgsrc.org> | 2001-11-01 18:24:44 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2001-11-01 18:24:44 +0000 |
commit | dab8ffd24d2d382445554669d1bebd613b879741 (patch) | |
tree | 43caccfb28263de57d4e5154584981326db853dc | |
parent | f41c77be15805ce7b737a849fcda5908b11ada03 (diff) | |
download | pkgsrc-dab8ffd24d2d382445554669d1bebd613b879741.tar.gz |
Use "${PREFIX}" instead of hard coded "/usr/pkg".
-rw-r--r-- | textproc/xerces-p/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/textproc/xerces-p/Makefile b/textproc/xerces-p/Makefile index 18cd1c826bf..bd5fc8528f3 100644 --- a/textproc/xerces-p/Makefile +++ b/textproc/xerces-p/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2001/07/27 11:23:20 wiz Exp $ +# $NetBSD: Makefile,v 1.7 2001/11/01 18:24:44 tron Exp $ # DISTNAME= XML-Xerces-1.3.5 @@ -17,8 +17,8 @@ USE_PERL5= # defined PERL5_REQD= 5.6.0 PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/XML/Xerces/.packlist -MAKE_ENV+= XERCES_LIB=/usr/pkg/lib -MAKE_ENV+= XERCES_INCLUDE=/usr/pkg/include +MAKE_ENV+= XERCES_LIB=${PREFIX}/lib +MAKE_ENV+= XERCES_INCLUDE=${PREFIX}/include do-build: @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL && make |