This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Maintenance 5.004_03 changes
authorTim Bunce <Tim.Bunce@pobox.com>
Tue, 30 Sep 1997 14:11:29 +0000 (14:11 +0000)
committerTim Bunce <Tim.Bunce@pobox.com>
Tue, 30 Sep 1997 14:11:29 +0000 (14:11 +0000)
p4raw-id: //depot/maint-5.004/perl@82

1  2 
Makefile.SH
Porting/makerel

diff --combined Makefile.SH
index b941bb0,86fd6ed..86fd6ed
mode 100644,100755..100644
@@@ -362,7 -362,7 +362,7 @@@ install.man:       all installma
  # XXX Experimental. Hardwired values, but useful for testing.
  # Eventually Configure could ask for some of these values.
  install.html: all installhtml
-       ./installhtml                   \
+       ./perl installhtml                   \
        --podroot=. --podpath=. --recurse  \
        --htmldir=$(privlib)/html     \
        --htmlroot=$(privlib)/html    \
diff --combined Porting/makerel
index 0476ab5,bc472ee..bc472ee
mode 100755,100755..100644
@@@ -35,6 -35,13 +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";