[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

r1448 - in glibc-package/branches/glibc-2.4/debian: . patches patches/any



Author: schizo
Date: 2006-04-22 00:45:32 +0000 (Sat, 22 Apr 2006)
New Revision: 1448

Added:
   glibc-package/branches/glibc-2.4/debian/patches/any/local-bashisms.diff
Modified:
   glibc-package/branches/glibc-2.4/debian/changelog
   glibc-package/branches/glibc-2.4/debian/patches/series
Log:
    - Add any/local-bashisms.diff: fix invalid test operator (==) 
      in run-iconv-test.sh


Modified: glibc-package/branches/glibc-2.4/debian/changelog
===================================================================
--- glibc-package/branches/glibc-2.4/debian/changelog	2006-04-22 00:08:01 UTC (rev 1447)
+++ glibc-package/branches/glibc-2.4/debian/changelog	2006-04-22 00:45:32 UTC (rev 1448)
@@ -17,6 +17,8 @@
     - Remove everything to do with nscd_nischeck.
     - Update linuxthreads-sizefix.diff for 2.4.
     - debian/shlibver: Bump up to 2.4-1.
+    - Add any/local-bashisms.diff: fix invalid test operator (==)
+      in run-iconv-test.sh
 
   [ Denis Barbier ]
     - Remove complex-collate.diff (merged upstream).

Added: glibc-package/branches/glibc-2.4/debian/patches/any/local-bashisms.diff
===================================================================
--- glibc-package/branches/glibc-2.4/debian/patches/any/local-bashisms.diff	2006-04-22 00:08:01 UTC (rev 1447)
+++ glibc-package/branches/glibc-2.4/debian/patches/any/local-bashisms.diff	2006-04-22 00:45:32 UTC (rev 1448)
@@ -0,0 +1,13 @@
+Index: glibc-2.4/iconvdata/run-iconv-test.sh
+===================================================================
+--- glibc-2.4.orig/iconvdata/run-iconv-test.sh	2006-04-21 19:34:19.000000000 -0400
++++ glibc-2.4/iconvdata/run-iconv-test.sh	2006-04-21 19:34:58.000000000 -0400
+@@ -128,7 +128,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 ||

Modified: glibc-package/branches/glibc-2.4/debian/patches/series
===================================================================
--- glibc-package/branches/glibc-2.4/debian/patches/series	2006-04-22 00:08:01 UTC (rev 1447)
+++ glibc-package/branches/glibc-2.4/debian/patches/series	2006-04-22 00:45:32 UTC (rev 1448)
@@ -125,3 +125,5 @@
 #argp_h.diff -p1
 getcwd_c.diff -p1
 hurd-machrules-make.diff -p1
+
+any/local-bashisms.diff



Reply to: