diff options
author | Ulrich Drepper <drepper@redhat.com> | 2008-05-15 01:59:59 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2008-05-15 01:59:59 +0000 |
commit | c8d49f05e7048f84bb8a60381c290f4831f3bd57 (patch) | |
tree | 8b73fc0958d0b6342b56b592ae2d4459f1b3e381 | |
parent | a754f018b8ccf6d9d48979e35177c40231cc787b (diff) | |
download | glibc-c8d49f05e7048f84bb8a60381c290f4831f3bd57.tar glibc-c8d49f05e7048f84bb8a60381c290f4831f3bd57.tar.gz glibc-c8d49f05e7048f84bb8a60381c290f4831f3bd57.tar.bz2 glibc-c8d49f05e7048f84bb8a60381c290f4831f3bd57.zip |
* iconvdata/run-iconv-test.sh: Use = instead of == in test.
Patch by Reuben Thomas.
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | iconvdata/run-iconv-test.sh | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2008-05-14 Ulrich Drepper <drepper@redhat.com> + + * iconvdata/run-iconv-test.sh: Use = instead of == in test. + Patch by Reuben Thomas. + 2008-05-14 Joseph Myers <joseph@codesourcery.com> * iconvdata/Makefile (bug-iconv6-ENV, tst-iconv7-ENV): Define. diff --git a/iconvdata/run-iconv-test.sh b/iconvdata/run-iconv-test.sh index 5f6339d2c8..4b8a1280af 100755 --- a/iconvdata/run-iconv-test.sh +++ b/iconvdata/run-iconv-test.sh @@ -1,6 +1,6 @@ #! /bin/sh -f # Run available iconv(1) tests. -# Copyright (C) 1998-2002, 2005, 2006 Free Software Foundation, Inc. +# Copyright (C) 1998-2002, 2005, 2006, 2008 Free Software Foundation, Inc. # This file is part of the GNU C Library. # Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998. # @@ -130,7 +130,7 @@ while read from to subset targets; do done fi - if test "$subset" == N; then + if test "$subset" = N; then echo $ac_n " suntzu: ASCII -> $to -> ASCII $ac_c" $PROG -f ASCII -t $to testdata/suntzus | $PROG -f $to -t ASCII > $temp1 || |