diff options
author | 2020-06-27 20:44:12 +0000 | |
---|---|---|
committer | 2020-06-27 20:44:12 +0000 | |
commit | dab3a19829a881759a2b76e3b1e60dcf070d78e4 (patch) | |
tree | d5c22fc529219025c810b041ec556dc19d21203c /gnu/usr.bin/perl/installperl | |
parent | Prevent the use of jump tables on powerpc64 as well. (diff) | |
download | wireguard-openbsd-dab3a19829a881759a2b76e3b1e60dcf070d78e4.tar.xz wireguard-openbsd-dab3a19829a881759a2b76e3b1e60dcf070d78e4.zip |
Remove some customizations from the perl build
This was originally done so that other things in-tree such as vi could link
to libperl and to support non-shared vax.
This brings us more in-line with upstream and makes things more understandable.
It now links libperl.so to libm, which some software needs, and stops building
and installing libperl.a.
OK bluhm@
Diffstat (limited to 'gnu/usr.bin/perl/installperl')
-rw-r--r-- | gnu/usr.bin/perl/installperl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/usr.bin/perl/installperl b/gnu/usr.bin/perl/installperl index 1ca3b992623..06dda060232 100644 --- a/gnu/usr.bin/perl/installperl +++ b/gnu/usr.bin/perl/installperl @@ -383,7 +383,7 @@ elsif ($Is_Cygwin) { # On Cygwin symlink it to CORE to make Makefile happy # [als] hard-coded 'libperl' name... not good! #@corefiles = <*.h libperl*.* perl*$Config{lib_ext}>; @corefiles = <*.h *.inc perl*$Config{lib_ext}>; - push(@corefiles,<libperl*.*>) unless defined($ENV{"NOLIBINSTALL"}); + install($libperl, "$opts{destdir}$Config{glibpth}/$libperl", "0444"); # AIX needs perl.exp installed as well. push(@corefiles,'perl.exp') if $^O eq 'aix'; |