diff options
author | kim <kim> | 1998-08-15 01:37:19 +0000 |
---|---|---|
committer | kim <kim> | 1998-08-15 01:37:19 +0000 |
commit | 0ec7811c5fb1cc9444f290f381e5448b22db5bd5 (patch) | |
tree | b0dccc070d1953d4796a643ff8be849e5a465242 /lang | |
parent | ca1652f53171d083ea53eba0ab5db4ca976fd40a (diff) | |
download | pkgsrc-0ec7811c5fb1cc9444f290f381e5448b22db5bd5.tar.gz |
Configure uses ${PREFIX} so pass it in the environment.
(Or was it our patch only that introduced it -- then it
might need to be ${prefix} in patches/patch-aa instead).
In any case, this fix works (now gdbm is found if it is
already installed as a package).
Diffstat (limited to 'lang')
-rw-r--r-- | lang/perl5/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lang/perl5/Makefile b/lang/perl5/Makefile index f2cbbb4f5d7..99176efa172 100644 --- a/lang/perl5/Makefile +++ b/lang/perl5/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 1998/06/22 12:44:31 agc Exp $ +# $NetBSD: Makefile,v 1.11 1998/08/15 01:37:19 kim Exp $ # FreeBSD Id: Makefile,v 1.20 1997/07/18 06:16:44 markm Exp # @@ -13,6 +13,7 @@ MAINTAINER= packages@netbsd.org OPSYS!= uname -s LOPSYS!= echo ${OPSYS}|tr [A-Z] [a-z] HAS_CONFIGURE= yes +CONFIGURE_ENV+= PREFIX=${PREFIX} CONFIGURE_SCRIPT= Configure CONFIGURE_ARGS+= -sde -Dprefix=${PREFIX} \ -Darchname=${MACHINE_ARCH}-${LOPSYS} |