summaryrefslogtreecommitdiff
path: root/Porting
diff options
context:
space:
mode:
authorTim Bunce <Tim.Bunce@pobox.com>1997-09-30 14:11:29 +0000
committerTim Bunce <Tim.Bunce@pobox.com>1997-09-30 14:11:29 +0000
commitfde3839ed04a2542feb61732eef5a44b24f18d42 (patch)
treea434e13ab52f62d896c3deed3492c973d53440ce /Porting
parentc86e9150ad7a16fbff9ad6e01b9c8c86649cde1b (diff)
parent90248788f819cf7b59aabb5259fdd6d66bc4632b (diff)
downloadperl-fde3839ed04a2542feb61732eef5a44b24f18d42.tar.gz
Maintenance 5.004_03 changes
p4raw-id: //depot/maint-5.004/perl@82
Diffstat (limited to 'Porting')
-rw-r--r--[-rwxr-xr-x]Porting/makerel7
1 files changed, 7 insertions, 0 deletions
diff --git a/Porting/makerel b/Porting/makerel
index 0476ab52b3..bc472eee36 100755..100644
--- a/Porting/makerel
+++ b/Porting/makerel
@@ -35,6 +35,13 @@ print "Cross-checking the MANIFEST...\n";
($missfile, $missentry) = fullcheck();
warn "Can't make a release with MANIFEST files missing.\n" if @$missfile;
warn "Can't make a release with files not listed in MANIFEST.\n" if @$missentry;
+if ("@$missentry" =~ m/\.orig\b/) {
+ # Handy listing of find command and .orig files from patching work.
+ # I tend to run 'xargs rm' and copy and paste the file list.
+ my $cmd = "find . -name '*.orig' -print";
+ print "$cmd\n";
+ system($cmd);
+}
die "Aborted.\n" if @$missentry or @$missfile;
print "\n";