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

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



Author: aurel32
Date: 2006-05-16 20:50:10 +0000 (Tue, 16 May 2006)
New Revision: 1477

Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/debhelper.in/libc.preinst
Log:
  * Follow symlinks while checking for other copy of the C library (Closes:
    #365838)


Modified: glibc-package/trunk/debian/changelog
===================================================================
--- glibc-package/trunk/debian/changelog	2006-05-12 15:10:38 UTC (rev 1476)
+++ glibc-package/trunk/debian/changelog	2006-05-16 20:50:10 UTC (rev 1477)
@@ -11,6 +11,8 @@
   * debian/local/manpages: s/woody/etch/g.  (Closes: #364198)
   * sysdeps/depflags.pl: bumped the versioned conflicts with initrd-tools 
     to 0.1.84.1, as older version use LD_ASSUME_KERNEL=2.4.  (Closes: #365647)
+  * Follow symlinks while checking for other copy of the C library (Closes:
+    #365838)
 
   [ Denis Barbier ]
   * Preserve hard links when compiling the locales-all package, this reduces

Modified: glibc-package/trunk/debian/debhelper.in/libc.preinst
===================================================================
--- glibc-package/trunk/debian/debhelper.in/libc.preinst	2006-05-12 15:10:38 UTC (rev 1476)
+++ glibc-package/trunk/debian/debhelper.in/libc.preinst	2006-05-16 20:50:10 UTC (rev 1477)
@@ -113,6 +113,9 @@
 
 check_dirs () {
   for dir in $*; do
+    # Follow symlinks
+    dir=$(readlink -f $dir)
+    
     # Handle /lib in LD_LIBRARY_PATH.
     if expr $dir : "/lib.*" > /dev/null; then
       continue



Reply to: