diff options
author | Nicholas Clark <nick@ccl4.org> | 2013-07-20 21:18:05 +0200 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2013-07-24 09:36:12 +0200 |
commit | 5daeb5b0949c8927e159000017a70c6fc5545030 (patch) | |
tree | 5ec0aa54588b7e756e22735792a614a0fe44522d /Makefile.SH | |
parent | f31bacf34c8f49647bd051b0e1b3b0a9eb6e18e5 (diff) | |
download | perl-5daeb5b0949c8927e159000017a70c6fc5545030.tar.gz |
Re-order clean-up rules to give a line for regen/lib_cleanup.pl to key off.
The Win32 line C<-del /f *.def *.map> and the start of the Unix line
C<rm -f so_locations> are unlikely to change.
Diffstat (limited to 'Makefile.SH')
-rwxr-xr-x | Makefile.SH | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.SH b/Makefile.SH index e3bfa58d98..1062bcca54 100755 --- a/Makefile.SH +++ b/Makefile.SH @@ -1227,7 +1227,6 @@ _cleaner2: rm -f core *perl.core t/core t/*perl.core core.* t/core.* rm -f t/$(PERL_EXE) t/rantests rm -rf t/tmp* - rm -f so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR) rm -rf $(addedbyconf) rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old makefile.old utils/Makefile rm -f $(private) @@ -1237,6 +1236,10 @@ _cleaner2: rm -f h2ph.man pstruct rm -rf .config rm -f preload + rm -f pod2htmd.tmp + rm -rf pod/perlfunc pod/perlipc + -rmdir ext/B/lib + rm -f so_locations $(LIBPERL_NONSHR) $(MINIPERL_NONSHR) rm -rf lib/Encode lib/Compress lib/Hash lib/re rm -rf lib/TAP lib/Module/Pluggable lib/App rm -rf lib/mro @@ -1244,9 +1247,6 @@ _cleaner2: rm -fr lib/B rm -fr lib/CPAN rm -fr lib/ExtUtils/CBuilder - rm -f pod2htmd.tmp - rm -rf pod/perlfunc pod/perlipc - -rmdir ext/B/lib -rmdir lib/Archive/Tar lib/Archive lib/Attribute -rmdir lib/CGI lib/Carp -rmdir lib/Data lib/Devel lib/Digest |