Now Configure -Dextras=Foo::Bar and "make install" will
Jarkko Hietaniemi [Mon, 30 Jul 2001 03:45:32 +0000 (03:45 +0000)]
fetch and install Foo::Bar.

p4raw-id: //depot/perl@11497

Makefile.SH

index 1a1bc09..9262cf8 100644 (file)
@@ -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