diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-07-30 03:45:32 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-07-30 03:45:32 +0000 |
commit | 6a5ee332bac8b571f1c6e5427d6b808e59b02b7a (patch) | |
tree | 7522da7a9351210f52ffe6953eab657f08042b63 /Makefile.SH | |
parent | bf35c3f6afc591c147608b6bcc7772580a3022dc (diff) | |
download | perl-6a5ee332bac8b571f1c6e5427d6b808e59b02b7a.tar.gz |
Now Configure -Dextras=Foo::Bar and "make install" will
fetch and install Foo::Bar.
p4raw-id: //depot/perl@11497
Diffstat (limited to 'Makefile.SH')
-rw-r--r-- | Makefile.SH | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.SH b/Makefile.SH index 1a1bc098e1..9262cf82c1 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 |