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

r5058 - in glibc-package/trunk/debian: . rules.d



Author: vorlon
Date: 2011-12-09 19:44:45 +0000 (Fri, 09 Dec 2011)
New Revision: 5058

Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/rules.d/debhelper.mk
Log:
Fix chmod regex in udeb pass to match the one used for others.

Modified: glibc-package/trunk/debian/changelog
===================================================================
--- glibc-package/trunk/debian/changelog	2011-12-09 04:44:00 UTC (rev 5057)
+++ glibc-package/trunk/debian/changelog	2011-12-09 19:44:45 UTC (rev 5058)
@@ -17,6 +17,7 @@
     to the correct location in the udeb, so binaries can find it.
   * Install /lib/ld-linux.so.3 symlink in libc6:armhf, this will need
     to be reverted once the rebuild/rebootstrap is completed.
+  * Fix chmod regex in udeb pass to match the one used for others.
 
   [ Aurelien Jarno ]
   * patches/i386/local-cpuid-level2.diff: fix a typo.  Closes: #609389.

Modified: glibc-package/trunk/debian/rules.d/debhelper.mk
===================================================================
--- glibc-package/trunk/debian/rules.d/debhelper.mk	2011-12-09 04:44:00 UTC (rev 5057)
+++ glibc-package/trunk/debian/rules.d/debhelper.mk	2011-12-09 19:44:45 UTC (rev 5058)
@@ -140,9 +140,9 @@
 
 	dh_compress -p$(curpass)
 	dh_fixperms -p$(curpass)
-	find debian/$(curpass) -type f \( -regex '.*lib[0-9]*/ld.*so.*' \
-		-o -regex '.*lib[0-9]*/.*libpthread.*so.*' \
-		-o -regex '.*lib[0-9]*/libc[.-].*so.*' \) \
+	find debian/$(curpass) -type f \( -regex '.*/ld.*so' \
+		-o -regex '.*/libpthread-.*so' \
+		-o -regex '.*/libc-.*so' \) \
 		-exec chmod a+x '{}' ';'
 	dh_installdeb -p$(curpass)
 	# dh_shlibdeps -p$(curpass)


Reply to: