In perl.git, the branch maint-5.18 has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/9de5f9548e6b2b322163ba0386f30c853d6111e2?hp=79fe14581c9c8fd21f45b89148045403b0fdccd5>

- Log -----------------------------------------------------------------
commit 9de5f9548e6b2b322163ba0386f30c853d6111e2
Author: Peter Martini <[email protected]>
Date:   Sun Jul 21 18:45:45 2013 -0400

    Fix missing single quote in a sed in hints/aix.sh
    
    (cherry picked from commit da46ab3732c369c451e8f975eeca0700552ac282)
-----------------------------------------------------------------------

Summary of changes:
 hints/aix.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hints/aix.sh b/hints/aix.sh
index e1ae2fd..675cfa6 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'`"

--
Perl5 Master Repository

Reply via email to