summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/perl/installperl
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1999-11-23 05:17:21 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1999-11-23 05:17:21 +0000
commit3487fc3e63e28658fc0291ad8653d2d23b1faa94 (patch)
treeb46948594d1c284efe0cd7de5d0a4be069b76d5d /gnu/usr.bin/perl/installperl
parentb98a0e030f4799d9f1b51ceecc3a90cfcb5d04e6 (diff)
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') {