Change 11497 by jhi@alpha on 2001/07/30 03:45:32
Now Configure -Dextras=Foo::Bar and "make install" will
fetch and install Foo::Bar.
Affected files ...
... //depot/perl/Makefile.SH#205 edit
Differences ...
==== //depot/perl/Makefile.SH#205 (text) ====
Index: perl/Makefile.SH
--- perl/Makefile.SH.~1~ Sun Jul 29 22:00:06 2001
+++ perl/Makefile.SH Sun Jul 29 22:00:06 2001
@@ -673,14 +673,14 @@
-@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
End of Patch.