This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

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


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 ||


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]