r1287 - in glibc-package/trunk/debian: . patches
Author: aurel32
Date: 2006-03-10 16:49:44 +0000 (Fri, 10 Mar 2006)
New Revision: 1287
Added:
glibc-package/trunk/debian/patches/getcwd_ia64.diff
Modified:
glibc-package/trunk/debian/changelog
glibc-package/trunk/debian/patches/series
Log:
* Add getcwd_ia64.diff (Remove the assertion so that the behaviour is the
same on all platforms, including ia64). This is a temporary fix to bug
#355109, until the upstream takes a decision.
Modified: glibc-package/trunk/debian/changelog
===================================================================
--- glibc-package/trunk/debian/changelog 2006-03-10 16:39:14 UTC (rev 1286)
+++ glibc-package/trunk/debian/changelog 2006-03-10 16:49:44 UTC (rev 1287)
@@ -13,6 +13,9 @@
* Create a link /usr/lib32 -> /emul/ia32-linux/usr/lib on amd64.
* Add argp_h.diff fixes (Remove __NTH for __argp_usage inline function)
by Ulrich Drepper (patch from HEAD). (Closes: #355264)
+ * Add getcwd_ia64.diff (Remove the assertion so that the behaviour is the
+ same on all platforms, including ia64). This is a temporary fix to bug
+ #355109, until the upstream takes a decision.
[ Denis Barbier ]
* locales.config: If $DEBCONF_IS_A_REGISTRY is set to a non-empty value,
Added: glibc-package/trunk/debian/patches/getcwd_ia64.diff
===================================================================
--- glibc-package/trunk/debian/patches/getcwd_ia64.diff 2006-03-10 16:39:14 UTC (rev 1286)
+++ glibc-package/trunk/debian/patches/getcwd_ia64.diff 2006-03-10 16:49:44 UTC (rev 1287)
@@ -0,0 +1,11 @@
+--- libc/sysdeps/unix/sysv/linux/getcwd.c.orig 2006-03-10 17:42:19.000000000 +0100
++++ libc/sysdeps/unix/sysv/linux/getcwd.c 2006-03-10 17:45:39.000000000 +0100
+@@ -127,7 +127,7 @@
+ /* It should never happen that the `getcwd' syscall failed because
+ the buffer is too small if we allocated the buffer ourselves
+ large enough. */
+- assert (errno != ERANGE || buf != NULL || size != 0);
++/* assert (errno != ERANGE || buf != NULL || size != 0); */
+
+ # ifndef NO_ALLOCATION
+ if (buf == NULL)
Modified: glibc-package/trunk/debian/patches/series
===================================================================
--- glibc-package/trunk/debian/patches/series 2006-03-10 16:39:14 UTC (rev 1286)
+++ glibc-package/trunk/debian/patches/series 2006-03-10 16:49:44 UTC (rev 1287)
@@ -136,3 +136,4 @@
tst-setcontext_c.diff -p1
strfmon.diff
argp_h.diff -p1
+getcwd_ia64.diff -p1
Reply to: