diff options
author | Mark Bixby <mark@bixby.org> | 1998-11-19 09:10:45 -0800 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1998-11-20 08:22:06 +0000 |
commit | 9d7f10f2fcf4722ba2d0742a5b1dac717e493166 (patch) | |
tree | 7b683c1d5129abbf3b62dab85dad6e08cbe177c0 /installperl | |
parent | cf0d5662e34a5af60128872de1d16ed1d7f8d954 (diff) | |
download | perl-9d7f10f2fcf4722ba2d0742a5b1dac717e493166.tar.gz |
MPE/iX Perl 5.005_02 oops
To: jhi@iki.fi
Message-Id: <199811200110.RAA07395@spock.dis.cccd.edu>
p4raw-id: //depot/cfgperl@2253
Diffstat (limited to 'installperl')
-rwxr-xr-x | installperl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/installperl b/installperl index 0ce39bf73a..4331d83910 100755 --- a/installperl +++ b/installperl @@ -220,6 +220,11 @@ else { @corefiles = <*.h libperl*.*>; # AIX needs perl.exp installed as well. push(@corefiles,'perl.exp') if $^O eq 'aix'; + if ($^O eq 'mpeix') { + # MPE needs mpeixish.h installed as well. + mkpath("$installarchlib/CORE/mpeix", 1, 0777); + push(@corefiles,'mpeix/mpeixish.h'); + } # If they have built sperl.o... push(@corefiles,'sperl.o') if -f 'sperl.o'; } |