From: Ralf Wildenhues Date: Sat, 28 Aug 2010 12:17:20 +0000 (+0200) Subject: Fix quoting in non-XSI func_xform, for IRIX sh. X-Git-Tag: v2.4~73^2~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=82f2a825a7ec3d414d76b685b82cb81345e13d83;p=thirdparty%2Flibtool.git Fix quoting in non-XSI func_xform, for IRIX sh. * libltdl/config/ltmain.m4sh (func_xform): Remove spurious extra M4 quotes. Signed-off-by: Ralf Wildenhues --- diff --git a/ChangeLog b/ChangeLog index 4b77602ad..af7c53568 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2010-08-28 Ralf Wildenhues + Fix quoting in non-XSI func_xform, for IRIX sh. + * libltdl/config/ltmain.m4sh (func_xform): Remove spurious extra + M4 quotes. + Fix response file test for unreliable exit status of IRIX ar. * libltdl/m4/libtool.m4 (_LT_PROG_AR): IRIX ar will not fail over a command-line argument specifying a nonexistent file (such diff --git a/libltdl/config/ltmain.m4sh b/libltdl/config/ltmain.m4sh index f23878ed0..a1f3b3533 100644 --- a/libltdl/config/ltmain.m4sh +++ b/libltdl/config/ltmain.m4sh @@ -191,7 +191,7 @@ func_lo2o () # func_xform libobj-or-source func_xform () { - func_xform_result=`$ECHO "${1}" | $SED 's/\.[[^.]]*$/.lo/'` + func_xform_result=`$ECHO "${1}" | $SED 's/\.[^.]*$/.lo/'` } # func_xform may be replaced by extended shell implementation