Tiny fix to test script run-iconv-test.sh

Reuben Thomas rrt@sc3d.org
Tue May 13 13:33:00 GMT 2008


The following one-character patch against current CVS removes a bashism:

===================================================================
RCS file: /cvs/glibc/libc/iconvdata/run-iconv-test.sh,v
retrieving revision 1.27
diff -u -r1.27 run-iconv-test.sh
--- iconvdata/run-iconv-test.sh	1 Aug 2006 06:45:49 -0000	1.27
+++ iconvdata/run-iconv-test.sh	12 May 2008 21:30:03 -0000
@@ -130,7 +130,7 @@
      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 ||



More information about the Libc-alpha mailing list