From: Gary V. Vaughan Date: Thu, 31 Aug 2000 17:35:56 +0000 (+0000) Subject: sh.test was failing unnecessarily. X-Git-Tag: multi-language-merge-point~169 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4f666f477f1c59b74afc0b7c225e6d0afa46f03a;p=thirdparty%2Flibtool.git sh.test was failing unnecessarily. * ltmain.in: Xsed is overkill on $CC, and removing it prevents the test suite from failing. --- diff --git a/ChangeLog b/ChangeLog index db7f6f7fc..fb01933d1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2000-08-31 Gary V. Vaughan + + sh.test was failing unnecessarily. + + * ltmain.in: Xsed is overkill on $CC, and removing it prevents + the test suite from failing. + 2000-08-31 Ossama Othman * ltcf-c.sh, ltcf-cxx.sh, ltcf-gcj.sh: Removed RCD ID tags. They diff --git a/ltmain.in b/ltmain.in index 745c6f252..23cfb4aab 100644 --- a/ltmain.in +++ b/ltmain.in @@ -483,7 +483,7 @@ if test -z "$show_help"; then "$CC "*) ;; # Blanks in the command may have been stripped by the calling shell, # but not from the CC environment variable when ltconfig was run. - "`$echo X$CC | $Xsed` "*) ;; + "`$echo $CC` "*) ;; *) for z in $available_tags; do if grep "^### BEGIN LIBTOOL TAG CONFIG: $z$" < "$0" > /dev/null; then @@ -497,7 +497,7 @@ if test -z "$show_help"; then tagname=$z break ;; - "`$echo X$CC | $Xsed` "*) + "`$echo $CC` "*) tagname=$z break ;; @@ -1414,7 +1414,7 @@ EOF "$CC "*) ;; # Blanks in the command may have been stripped by the calling shell, # but not from the CC environment variable when ltconfig was run. - "`$echo X$CC | $Xsed` "*) ;; + "`$echo $CC` "*) ;; *) for z in $available_tags; do if grep "^### BEGIN LIBTOOL TAG CONFIG: $z$" < "$0" > /dev/null; then @@ -1428,7 +1428,7 @@ EOF tagname=$z break ;; - "`$echo X$CC | $Xsed` "*) + "`$echo $CC` "*) tagname=$z break ;;