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

r1858 - glibc-package/branches/glibc-2.5/debian/rules.d



Author: aurel32
Date: 2006-10-19 07:18:27 +0000 (Thu, 19 Oct 2006)
New Revision: 1858

Modified:
   glibc-package/branches/glibc-2.5/debian/rules.d/debhelper.mk
Log:
Fixed the regular expressions used to set the permissions of ld, libc, libpthread, so that /usr/lib/libc.so is not set executable.



Modified: glibc-package/branches/glibc-2.5/debian/rules.d/debhelper.mk
===================================================================
--- glibc-package/branches/glibc-2.5/debian/rules.d/debhelper.mk	2006-10-18 09:48:14 UTC (rev 1857)
+++ glibc-package/branches/glibc-2.5/debian/rules.d/debhelper.mk	2006-10-19 07:18:27 UTC (rev 1858)
@@ -116,9 +116,9 @@
 	# an unescaped regular expression.  ld.so must be executable;
 	# libc.so and NPTL's libpthread.so print useful version
 	# information when executed.
-	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 '.*lib[0-9]*/ld.*so' \
+		-o -regex '.*lib[0-9]*/libpthread-.*so' \
+		-o -regex '.*lib[0-9]*/libc-.*so' \) \
 		-exec chmod a+x '{}' ';'
 	dh_makeshlibs -p$(curpass) -V "$(call xx,shlib_dep)"
 



Reply to: