Change 19055 by [EMAIL PROTECTED] on 2003/03/24 07:05:39
Subject: no more 'make install && make test' with shared libperl.so on Linux
From: Enache Adrian <[EMAIL PROTECTED]>
Date: Sat, 22 Mar 2003 22:49:49 +0200
Message-ID: <[EMAIL PROTECTED]>
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 <[EMAIL PROTECTED]>
Date: Tue 31 Dec 2002 17:21
Affected files ...
... //depot/perl/Makefile.SH#261 edit
Differences ...
==== //depot/perl/Makefile.SH#261 (text) ====
Index: perl/Makefile.SH
--- perl/Makefile.SH#260~18880~ Mon Mar 10 08:17:50 2003
+++ perl/Makefile.SH Sun Mar 23 23:05:39 2003
@@ -110,6 +110,9 @@
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.
End of Patch.