summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/perl/installperl
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>1999-11-23 05:17:20 +0000
committermillert <millert@openbsd.org>1999-11-23 05:17:20 +0000
commitdfa561d11f3c80f4086fee6d3e0b0b920759c869 (patch)
treec84197b97927f0ee5588c6ae84a5375bee4e05e3 /gnu/usr.bin/perl/installperl
parentpretty up kernel printf's (diff)
downloadwireguard-openbsd-dfa561d11f3c80f4086fee6d3e0b0b920759c869.tar.xz
wireguard-openbsd-dfa561d11f3c80f4086fee6d3e0b0b920759c869.zip
missed in shared libperl mods due to cvs bug
Diffstat (limited to 'gnu/usr.bin/perl/installperl')
-rw-r--r--gnu/usr.bin/perl/installperl5
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/usr.bin/perl/installperl b/gnu/usr.bin/perl/installperl
index f3ca6b182b0..491971ab1b8 100644
--- a/gnu/usr.bin/perl/installperl
+++ b/gnu/usr.bin/perl/installperl
@@ -1,5 +1,5 @@
#!./perl
-# $OpenBSD: installperl,v 1.7 1997/11/30 07:48:39 millert Exp $
+# $OpenBSD: installperl,v 1.9 1999/04/29 22:56:02 millert Exp $
#
# This is hacked up, in order to support DESTDIR and INSTALL_STRIP.
#
@@ -255,7 +255,8 @@ if ($Is_VMS) { # We did core file selection during build
@corefiles = <$coredir/*.*>;
}
else {
- @corefiles = <*.h libperl*.*>;
+ @corefiles = <*.h>;
+ push(@corefiles,<libperl*.*>) unless defined($ENV{"NOLIBINSTALL"});
# AIX needs perl.exp installed as well.
push(@corefiles,'perl.exp') if $^O eq 'aix';
if ($^O eq 'mpeix') {