diff options
author | jlam <jlam@pkgsrc.org> | 2000-08-27 02:46:03 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2000-08-27 02:46:03 +0000 |
commit | 06f0a4c3c2051370b645889877b890871f653667 (patch) | |
tree | 1e6a3745241270729ad06096ce88aae00098df6e /mail/grepmail/Makefile | |
parent | be7f4fdef3c6ab7b370c57cfd4aef4beb08ea983 (diff) | |
download | pkgsrc-06f0a4c3c2051370b645889877b890871f653667.tar.gz |
Use new PERL5 variable instead of ${LOCALBASE}/bin/perl.
Diffstat (limited to 'mail/grepmail/Makefile')
-rw-r--r-- | mail/grepmail/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/mail/grepmail/Makefile b/mail/grepmail/Makefile index ba1605cc33a..8e63eb37cbc 100644 --- a/mail/grepmail/Makefile +++ b/mail/grepmail/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2000/01/24 14:19:56 agc Exp $ +# $NetBSD: Makefile,v 1.3 2000/08/27 02:46:04 jlam Exp $ # DISTNAME= grepmail-4.11 @@ -8,17 +8,16 @@ MASTER_SITES= http://www.cs.virginia.edu/~dwc3q/code/ MAINTAINER= david@fundy.net HOMEPAGE= http://www.cs.virginia.edu/~dwc3q/code/index.html -CONFIGURE_ENV= PERL=${PREFIX}/bin/perl - -USE_PERL5= yes +USE_PERL5= # defined +CONFIGURE_ENV= PERL=${PERL5} do-build: @cd ${WRKSRC} ; \ for i in 1 2 ; do \ - ${ECHO} "$$i" | ${SETENV} ${MAKE_ENV} ${PREFIX}/bin/perl Makefile.PL; \ + ${ECHO} "$$i" | ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL; \ ${MAKE}; \ ${RM} -f grepmail-$$i; \ - ${SED} -e '1s|.*|#! ${PREFIX}/bin/perl|' grepmail > grepmail-$$i; \ + ${SED} -e '1s|.*|#! ${PERL5}|' grepmail > grepmail-$$i; \ done do-install: |