diff options
author | Peter Martini <PeterCMartini@GMail.com> | 2013-07-21 18:45:45 -0400 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2013-07-22 18:40:37 -0600 |
commit | da46ab3732c369c451e8f975eeca0700552ac282 (patch) | |
tree | f42a32dbb69575bb799d65df1ea568cfad77d757 /hints/aix.sh | |
parent | c2a006195998befcd298bcb6a93d2788f9f60071 (diff) | |
download | perl-da46ab3732c369c451e8f975eeca0700552ac282.tar.gz |
Fix missing single quote in a sed in hints/aix.sh
Diffstat (limited to 'hints/aix.sh')
-rw-r--r-- | hints/aix.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hints/aix.sh b/hints/aix.sh index e1ae2fd798..675cfa6f96 100644 --- a/hints/aix.sh +++ b/hints/aix.sh @@ -342,7 +342,7 @@ libswanted_uselargefiles="`getconf XBS5_ILP32_OFFBIG_LIBS 2>/dev/null|sed -e 's@ esac # Some 32-bit getconfs will set ccflags to include -qlonglong # but that's no longer needed with an explicit -qextc99. - ccflags="`echo $ccflags | sed -e 's@ -qlonglong@@`" + ccflags="`echo $ccflags | sed -e 's@ -qlonglong@@'`" ;; *) # Remove xlc-specific -qflags. ccflags="`echo $ccflags | sed -e 's@ -q[^ ]*@ @g' -e 's@^-q[^ ]* @@g'`" |