summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.SH14
1 files changed, 7 insertions, 7 deletions
diff --git a/Makefile.SH b/Makefile.SH
index 51db4ad494..9161ed63b2 100644
--- a/Makefile.SH
+++ b/Makefile.SH
@@ -105,13 +105,13 @@ true)
case "$osname" in
linux)
rm -f preload
- cat <<-'EOT' > preload
- #! /bin/sh
- lib=$1
- shift
- test -r $lib && export LD_PRELOAD="$lib $LD_PRELOAD"
- exec "$@"
- EOT
+ cat <<EOT > preload
+#! /bin/sh
+lib=$1
+shift
+test -r $lib && export LD_PRELOAD="$lib $LD_PRELOAD"
+exec "$@"
+EOT
chmod 755 preload
ldlibpth="$ldlibpth `pwd`/preload `pwd`/$libperl"
;;