diff options
author | Nicholas Clark <nick@ccl4.org> | 2013-05-15 12:33:05 +0200 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2013-05-20 21:50:45 +0200 |
commit | d730c2986a70e4fa953cb2f352b7b5ebf41ea580 (patch) | |
tree | 11f0bf81941e5e1c58aa0ed39af74e2b4429fad8 | |
parent | 9e7945ee50c30a17a84968fb0c7e5c38223af6f9 (diff) | |
download | perl-d730c2986a70e4fa953cb2f352b7b5ebf41ea580.tar.gz |
Remove vestigial *.SH code which can link the extracted file into ../
4 of the *.SH files have code which links the extracted file into the parent
directory if the current directory ends SH. This code dates from Perl 1.
It seems that the intent was that the *.SH files could live in a SH/
directory, but that feature was neither used or mentioned in the
documentation in Perl 1, and hasn't been used since.
-rw-r--r-- | Cross/Makefile-cross-SH | 6 | ||||
-rwxr-xr-x | Makefile.SH | 6 | ||||
-rwxr-xr-x | makedepend.SH | 6 | ||||
-rwxr-xr-x | x2p/Makefile.SH | 6 |
4 files changed, 0 insertions, 24 deletions
diff --git a/Cross/Makefile-cross-SH b/Cross/Makefile-cross-SH index e5a14b490d..f14bc814d5 100644 --- a/Cross/Makefile-cross-SH +++ b/Cross/Makefile-cross-SH @@ -1281,12 +1281,6 @@ ctags: !NO!SUBS! $eunicefix $Makefile -case `pwd` in -*SH) - $rm -f ../$Makefile - $ln $Makefile ../$Makefile - ;; -esac $rm -f $firstmakefile # Now do any special processing required before building. diff --git a/Makefile.SH b/Makefile.SH index ddb9be1ee2..36c7e161a2 100755 --- a/Makefile.SH +++ b/Makefile.SH @@ -1604,12 +1604,6 @@ ctags: !NO!SUBS! $eunicefix Makefile -case `pwd` in -*SH) - $rm -f ../Makefile - $ln Makefile ../Makefile - ;; -esac $rm -f $firstmakefile # Now do any special processing required before building. diff --git a/makedepend.SH b/makedepend.SH index 5669b8de1b..0c3cf188ef 100755 --- a/makedepend.SH +++ b/makedepend.SH @@ -279,9 +279,3 @@ rmdir .depending !NO!SUBS! $eunicefix makedepend chmod +x makedepend -case `pwd` in -*SH) - $rm -f ../makedepend - ln makedepend ../makedepend - ;; -esac diff --git a/x2p/Makefile.SH b/x2p/Makefile.SH index 3f16623e98..55d338f95a 100755 --- a/x2p/Makefile.SH +++ b/x2p/Makefile.SH @@ -194,10 +194,4 @@ $(obj): makedepend: depend !NO!SUBS! $eunicefix Makefile -case `pwd` in -*SH) - $rm -f ../Makefile - $ln Makefile ../Makefile - ;; -esac rm -f $firstmakefile |