summaryrefslogtreecommitdiff
path: root/Makefile.SH
diff options
context:
space:
mode:
authorYitzchak Scott-Thoennes <sthoenna@efn.org>2000-08-28 10:45:52 -0700
committerJarkko Hietaniemi <jhi@iki.fi>2000-08-29 01:07:11 +0000
commit4009639630e1c5aaaff711ab11d5e4837d5bfe2c (patch)
tree5de2a96ba618140ff914075fc93cdd93617d10c4 /Makefile.SH
parenta31a806a8f483dfa4e00e0ac91d9875a8d724cff (diff)
downloadperl-4009639630e1c5aaaff711ab11d5e4837d5bfe2c.tar.gz
Re: files not cleaned even by veryclean
Message-ID: <Afwq5gzkg2UB092yn@efn.org> p4raw-id: //depot/perl@6873
Diffstat (limited to 'Makefile.SH')
-rw-r--r--Makefile.SH6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.SH b/Makefile.SH
index 5c8991ef93..40b1db1862 100644
--- a/Makefile.SH
+++ b/Makefile.SH
@@ -545,10 +545,10 @@ extra.pods: miniperl
-@rm -f extra.pods
-@for x in `grep -l '^=[a-z]' README.* | grep -v README.vms` ; do \
nx=`echo $$x | sed -e "s/README\.//"`; \
- $(LNS) ../$$x "pod/perl"$$nx".pod" ; \
+ cd pod ; $(LNS) ../$$x "perl"$$nx".pod" ; cd .. ; \
echo "pod/perl"$$nx".pod" >> extra.pods ; \
done
- -@test -f vms/perlvms.pod && $(LNS) ../vms/perlvms.pod pod/perlvms.pod && echo "pod/perlvms.pod" >> extra.pods
+ -@test -f vms/perlvms.pod && cd pod && $(LNS) ../vms/perlvms.pod perlvms.pod && cd .. && echo "pod/perlvms.pod" >> extra.pods
install-strip:
$(MAKE) STRIPFLAGS=-s install
@@ -581,7 +581,7 @@ install.man: all installman
# XXX Experimental. Hardwired values, but useful for testing.
# Eventually Configure could ask for some of these values.
install.html: all installhtml
- -@test -f README.vms && $(LNS) ../README.vms vms/README_vms.pod
+ -@test -f README.vms && cd vms && $(LNS) ../README.vms README_vms.pod && cd ..
$(LDLIBPTH) ./perl installhtml \
--podroot=. --podpath=. --recurse \
--htmldir=$(privlib)/html \