summaryrefslogtreecommitdiff
path: root/hints/aix.sh
diff options
context:
space:
mode:
authorH.Merijn Brand <h.m.brand@xs4all.nl>2008-06-02 13:52:39 +0000
committerH.Merijn Brand <h.m.brand@xs4all.nl>2008-06-02 13:52:39 +0000
commitaf638b876ea8e95c91b64f6e1a63718de7548bc1 (patch)
tree3b2e1a58cd520a134854980d233f02f567d9f2a1 /hints/aix.sh
parent55595e835ecd270061d73c45c43db17eca4eee1f (diff)
downloadperl-af638b876ea8e95c91b64f6e1a63718de7548bc1.tar.gz
Embarrassing errors to find: missing quotes in sed commands
p4raw-id: //depot/perl@33988
Diffstat (limited to 'hints/aix.sh')
-rw-r--r--hints/aix.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/hints/aix.sh b/hints/aix.sh
index 23fcfb7910..3cf6436f00 100644
--- a/hints/aix.sh
+++ b/hints/aix.sh
@@ -295,10 +295,10 @@ ldflags_uselargefiles="`getconf XBS5_ILP32_OFFBIG_LDFLAGS 2>/dev/null`"
fi
if test X"$use64bitint:$quadtype" = X"$define:long" -o X"$use64bitall" = Xdefine; then
# Keep this at the left margin.
-libswanted_uselargefiles="`getconf XBS5_LP64_OFF64_LIBS 2>/dev/null|sed -e 's@^-l@@' -e 's@ -l@ @g`"
+libswanted_uselargefiles="`getconf XBS5_LP64_OFF64_LIBS 2>/dev/null|sed -e 's@^-l@@' -e 's@ -l@ @g'`"
else
# Keep this at the left margin.
-libswanted_uselargefiles="`getconf XBS5_ILP32_OFFBIG_LIBS 2>/dev/null|sed -e 's@^-l@@' -e 's@ -l@ @g`"
+libswanted_uselargefiles="`getconf XBS5_ILP32_OFFBIG_LIBS 2>/dev/null|sed -e 's@^-l@@' -e 's@ -l@ @g'`"
fi
case "$ccflags_uselargefiles$ldflags_uselargefiles$libs_uselargefiles" in
@@ -419,7 +419,7 @@ EOM
# string is simply not detectable by any means. Since it doesn't
# do any harm, I didn't pursue it. -- sh
qaldflags="`echo $qaldflags`"
- qalibs="`getconf XBS5_LP64_OFF64_LIBS 2>/dev/null|sed -e 's@^-l@@' -e 's@ -l@ @g`"
+ qalibs="`getconf XBS5_LP64_OFF64_LIBS 2>/dev/null|sed -e 's@^-l@@' -e 's@ -l@ @g'`"
# -q32 and -b32 may have been set by uselargefiles or user.
# Remove them.
ccflags="`echo $ccflags | sed -e 's@-q32@@'`"