Enache Adrian wrote:
> On Mon, Mar 24, 2003 at 11:18:43PM +0100, Rafael Garcia-Suarez wrote:
> > Thanks, applied as #19056.
> > (In fact I was going to apply my own version, less clean, of your patch.)
>
> Aarrgh!
Too late to repent, I already applied this :
(which should be equivalent)
Change 19059 by [EMAIL PROTECTED] on 2003/03/24 21:43:03
Change 19056 wasn't good enough.
ldlibpth should be changed later, to avoid spaces to be quoted.
Affected files ...
... //depot/perl/Makefile.SH#263 edit
Differences ...
==== //depot/perl/Makefile.SH#263 (text) ====
@@ -96,12 +96,7 @@
ldlibpth=`echo $ldlibpth | sed 's/:*$//'`
;;
esac
- case "$osname" in
- linux)
- ldlibpth="LD_PRELOAD=\"\$\$LD_PRELOAD `pwd`/$libperl\" $ldlibpth"
;;
- esac
- ;;
*) pldlflags=''
static_target='static'
;;
@@ -113,6 +108,13 @@
esac
case "$osname" in
+linux)
+ case "$useshrplib" in
+ true)
+ ldlibpth="LD_PRELOAD=\"\$\$LD_PRELOAD `pwd`/$libperl\" $ldlibpth"
+ ;;
+ esac
+ ;;
os390) test -f /bin/env && ldlibpth="/bin/env $ldlibpth"
;;
esac