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

r2562 - glibc-package/trunk/debian/rules.d



Author: aurel32
Date: 2007-09-13 22:46:39 +0000 (Thu, 13 Sep 2007)
New Revision: 2562

Modified:
   glibc-package/trunk/debian/rules.d/debhelper.mk
Log:
Fix regex


Modified: glibc-package/trunk/debian/rules.d/debhelper.mk
===================================================================
--- glibc-package/trunk/debian/rules.d/debhelper.mk	2007-09-13 15:05:43 UTC (rev 2561)
+++ glibc-package/trunk/debian/rules.d/debhelper.mk	2007-09-13 22:46:39 UTC (rev 2562)
@@ -106,9 +106,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 'ld.*so' \
-		-o -regex 'libpthread-.*so' \
-		-o -regex 'libc-.*so' \) \
+	find debian/$(curpass) -type f \( -regex '.*/ld.*so' \
+		-o -regex '.*/libpthread-.*so' \
+		-o -regex '.*/libc-.*so' \) \
 		-exec chmod a+x '{}' ';'
 	dh_makeshlibs -X/usr/lib/debug -p$(curpass) -V "$(call xx,shlib_dep)"
 



Reply to: