diff options
author | H.Merijn Brand <h.m.brand@xs4all.nl> | 2008-06-02 14:04:59 +0000 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2008-06-02 14:04:59 +0000 |
commit | 4319409baa063eddacb1cc10ffb52369b987af67 (patch) | |
tree | 97d8819fb22f6eb96c1d96aae0a12392821fad86 /hints | |
parent | 04636146cbbfa9d78270f495f3e1948673449d7b (diff) | |
download | perl-4319409baa063eddacb1cc10ffb52369b987af67.tar.gz |
#33988 for AIX 3 and AIX 4: missing quotes in sed commands
p4raw-id: //depot/perl@33990
Diffstat (limited to 'hints')
-rw-r--r-- | hints/aix_3.sh | 4 | ||||
-rwxr-xr-x | hints/aix_4.sh | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/hints/aix_3.sh b/hints/aix_3.sh index 6a7a3c18a9..95401beb31 100644 --- a/hints/aix_3.sh +++ b/hints/aix_3.sh @@ -294,10 +294,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 '') ;; diff --git a/hints/aix_4.sh b/hints/aix_4.sh index 80f309f3fd..46b95b9083 100755 --- a/hints/aix_4.sh +++ b/hints/aix_4.sh @@ -392,10 +392,10 @@ ldflags_uselargefiles="`getconf XBS5_ILP32_OFFBIG_LDFLAGS 2>/dev/null`" ldflags_uselargefiles="`echo $ldflags_uselargefiles`" 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 @@ -503,7 +503,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@@'`" |