From: Jarkko Hietaniemi Date: Mon, 30 Jul 2001 03:45:32 +0000 (+0000) Subject: Now Configure -Dextras=Foo::Bar and "make install" will X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=6a5ee332bac8b571f1c6e5427d6b808e59b02b7a;p=p5sagit%2Fp5-mst-13.2.git Now Configure -Dextras=Foo::Bar and "make install" will fetch and install Foo::Bar. p4raw-id: //depot/perl@11497 --- diff --git a/Makefile.SH b/Makefile.SH index 1a1bc09..9262cf8 100644 --- a/Makefile.SH +++ b/Makefile.SH @@ -673,14 +673,14 @@ extras.prep: perl -@test -f extras.lst || touch extras.lst extras.make: extras.prep - $(LDLIBPTH) PATH=`pwd`:`pwd`/pod:${PATH} ./perl -Ilib -MCPAN -e 'make(@ARGV)' `cat extras.lst` + $(LDLIBPTH) PATH=`pwd`:${PATH} PERL5LIB=`pwd`/lib ./perl -Ilib -MCPAN -e 'make(@ARGV)' `cat extras.lst` extras.test: extras.prep - $(LDLIBPTH) PATH=`pwd`:`pwd`/pod:${PATH} ./perl -Ilib -MCPAN -e 'test(@ARGV)' `cat extras.lst` + $(LDLIBPTH) PATH=`pwd`:${PATH} PERL5LIB=`pwd`/lib ./perl -Ilib -MCPAN -e 'test(@ARGV)' `cat extras.lst` extras.install: extras.prep -@test -f extras.lst || touch extras.lst - $(LDLIBPTH) PATH=`pwd`:`pwd`/pod:${PATH} ./perl -Ilib -MCPAN -e 'install(@ARGV)' `cat extras.lst` + $(LDLIBPTH) PATH=`pwd`:${PATH} PERL5LIB=`pwd`/lib ./perl -Ilib -MCPAN -e 'install(@ARGV)' `cat extras.lst` .PHONY: install install-strip install-all install-verbose install-silent \ no-install install.perl install.man installman install.html installhtml