]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* tests/demo-hardcode.test: Fix typo.
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Mon, 18 Apr 2005 10:19:22 +0000 (10:19 +0000)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Mon, 18 Apr 2005 10:19:22 +0000 (10:19 +0000)
ChangeLog
tests/demo-hardcode.test

index 36aff6fcb5399f29138d549279b1f8d12ea64a5f..0299b96bca0887dd482f422c67b66443e377e4fd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2005-04-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
+
+       * tests/demo-hardcode.test: Fix typo.
+
 2005-04-17 Alexandre Oliva  <aoliva@redhat.com>,
           Peter O'Gorman  <peter@pogma.com>
 
@@ -15,6 +19,7 @@
        * tests/demo-hardcode.test [solaris]:  Use dumpstabs if available,
        to avoid false failure caused by debug section which contains
        command line (Solaris cc).
+       Reported by Ralf Menzel <menzel@ls6.cs.uni-dortmund.de>.
 
 2005-04-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
 
index f2b3ec89600b95d2c3ade2ebc138145dc4fb2765..73e5490ea9899bfd321aa66e7770831c7acbffc8 100755 (executable)
@@ -83,8 +83,8 @@ for file in hc-*; do
   # (which only works on ASCII).
   # AIX fgrep also has a limited line length, so we turn unprintable
   # characters into newlines.
-  if cat $file | (tr '\000-\037\200-\377' '\n' || cat) 2>/dev/null \
-              | $FGREP "$objdir" > /dev/null 2>&1; then
+  elif cat $file | (tr '\000-\037\200-\377' '\n' || cat) 2>/dev/null \
+                | $FGREP "$objdir" > /dev/null 2>&1; then
     hardcoded=yes
   elif $FGREP "$objdir" $file > /dev/null 2>&1; then
     # We retry fgrep without tr, in case the above lead to a false negative.