diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1996-09-06 17:35:30 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1996-09-06 17:35:30 +0000 |
commit | f090cd7d70d1211409711d62f55ceb9b45d13e78 (patch) | |
tree | 60f3194e65cf006cda739d826e8b6df50caaf98a | |
parent | 854f7becdd756cba9dc9f45bf4e0940409e4aad3 (diff) |
More bullshit.
-rw-r--r-- | gnu/usr.bin/perl/installperl | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/gnu/usr.bin/perl/installperl b/gnu/usr.bin/perl/installperl index 27f82571ab8..14412b4e032 100644 --- a/gnu/usr.bin/perl/installperl +++ b/gnu/usr.bin/perl/installperl @@ -1,5 +1,5 @@ #!./perl -# $OpenBSD: installperl,v 1.2 1996/08/26 05:31:51 downsj Exp $ +# $OpenBSD: installperl,v 1.3 1996/08/26 14:06:20 downsj Exp $ # # This is hacked up, in order to support DESTDIR. # @@ -29,7 +29,7 @@ umask 022; # pod documentation now handled by separate installman script. # These two are archaic leftovers. -@manpages = qw(x2p/a2p.man x2p/s2p.man); +#@manpages = qw(x2p/a2p.man x2p/s2p.man); @pods = (<pod/*.pod>); @@ -148,27 +148,27 @@ foreach $file (@pods) { # Install old man pages. -if ($installman1dir ne '') { - mkpath($installman1dir, 1, 0777); - - if (! &samepath($installman1dir, '.')) { - for (@manpages) { - ($new = $_) =~ s/man$/$man1ext/; - $new =~ s#.*/##; - print STDERR " Installing $installman1dir/$new\n"; - next if $nonono; - open(MI,$_) || warn "Can't open $_: $!\n"; - open(MO,">$installman1dir/$new") || - warn "Can't install $installman1dir/$new: $!\n"; - print MO ".ds RP Release $release Patchlevel $patchlevel\n"; - while (<MI>) { - print MO; - } - close MI; - close MO; - } - } -} +#if ($installman1dir ne '') { +# mkpath($installman1dir, 1, 0777); +# +# if (! &samepath($installman1dir, '.')) { +# for (@manpages) { +# ($new = $_) =~ s/man$/$man1ext/; +# $new =~ s#.*/##; +# print STDERR " Installing $installman1dir/$new\n"; +# next if $nonono; +# open(MI,$_) || warn "Can't open $_: $!\n"; +# open(MO,">$installman1dir/$new") || +# warn "Can't install $installman1dir/$new: $!\n"; +# print MO ".ds RP Release $release Patchlevel $patchlevel\n"; +# while (<MI>) { +# print MO; +# } +# close MI; +# close MO; +# } +# } +#} # Install library files. |