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

r4951 - in glibc-package/trunk/debian: . debhelper.in



Author: aurel32
Date: 2011-09-07 20:45:11 +0000 (Wed, 07 Sep 2011)
New Revision: 4951

Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/debhelper.in/libc.preinst
Log:
  * debian/debhelper.in/libc.preinst: get the dynamic linker from /bin/mv
    instead of /bin/true.  Closes: #640753.



Modified: glibc-package/trunk/debian/changelog
===================================================================
--- glibc-package/trunk/debian/changelog	2011-09-07 20:43:26 UTC (rev 4950)
+++ glibc-package/trunk/debian/changelog	2011-09-07 20:45:11 UTC (rev 4951)
@@ -11,6 +11,8 @@
     collation rules in C.UTF-8 locale.
   * Update debian/patches/svn-updates to revision 15228:
     - Drop debian/patches/any/cvs-dl-deps.diff (merged upstream).
+  * debian/debhelper.in/libc.preinst: get the dynamic linker from /bin/mv
+    instead of /bin/true.  Closes: #640753.
 
   [ Jeremie Koenig ]
   * New patches to improve the signal code on Hurd:

Modified: glibc-package/trunk/debian/debhelper.in/libc.preinst
===================================================================
--- glibc-package/trunk/debian/debhelper.in/libc.preinst	2011-09-07 20:43:26 UTC (rev 4950)
+++ glibc-package/trunk/debian/debhelper.in/libc.preinst	2011-09-07 20:45:11 UTC (rev 4951)
@@ -123,10 +123,10 @@
 # together
 remove_lib64_symlink() {
     ldfile=$(readlink -e RTLD_SO)
-    # Test if libc is of the same architecture as coreutils
+    # Test if libc is of the same architecture as /bin/mv
     # If not, they almost surely have a multiarch system and we can use
     # the native ELF interpreter
-    if ! $ldfile /bin/true 2>/dev/null; then
+    if ! $ldfile /bin/mv 2>/dev/null; then
         interpreter=
     else
         interpreter=$ldfile


Reply to: