]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
sh.test was failing unnecessarily.
authorGary V. Vaughan <gary@gnu.org>
Thu, 31 Aug 2000 17:35:56 +0000 (17:35 +0000)
committerGary V. Vaughan <gary@gnu.org>
Thu, 31 Aug 2000 17:35:56 +0000 (17:35 +0000)
* ltmain.in: Xsed is overkill on $CC, and removing it prevents
the test suite from failing.

ChangeLog
ltmain.in

index db7f6f7fc87d4a760194a4ee3550af2ab94ccdb5..fb01933d1cf63ecc23a8c18d133f2423e946a40c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2000-08-31  Gary V. Vaughan  <gvv@techie.com>
+
+       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  <ossama@debian.org>
 
        * ltcf-c.sh, ltcf-cxx.sh, ltcf-gcj.sh: Removed RCD ID tags.  They
index 745c6f2526f6e571158b7c562040fdbd326bda75..23cfb4aab1b7434b56c22d13d63a294595ca02d4 100644 (file)
--- 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
              ;;