From 3ead035adc87ed5d8e8952c16671f1195712e890 Mon Sep 17 00:00:00 2001 From: "H.Merijn Brand" Date: Mon, 24 Mar 2003 07:05:39 +0000 Subject: [PATCH] no more 'make install && make test' with shared libperl.so on Linux From: Enache Adrian Date: Sat, 22 Mar 2003 22:49:49 +0200 Message-ID: <20030322204949.GB794@ratsnest.hole> This is a slightly more defensive patch than Chip's patch that fell through the cracks, but does the same Subject: Shared libperl.so and build issues From: Chip Turner Date: Tue 31 Dec 2002 17:21 p4raw-id: //depot/perl@19055 --- Makefile.SH | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile.SH b/Makefile.SH index a062380..193b265 100644 --- a/Makefile.SH +++ b/Makefile.SH @@ -110,6 +110,9 @@ esac case "$osname" in os390) test -f /bin/env && ldlibpth="/bin/env $ldlibpth" ;; +linux) + ldlibpth="LD_PRELOAD=\"\$\$LD_PRELOAD `pwd`/$libperl\" $ldlibpth" + ;; esac : Prepare dependency lists for Makefile. -- 1.8.3.1