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) ====
Index: perl/Makefile.SH
--- perl/Makefile.SH#262~19056~ Mon Mar 24 13:05:48 2003
+++ perl/Makefile.SH    Mon Mar 24 13:43:03 2003
@@ -96,11 +96,6 @@
            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
End of Patch.

Reply via email to