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

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



Author: aurel32
Date: 2007-09-12 21:34:33 +0000 (Wed, 12 Sep 2007)
New Revision: 2558

Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/rules.d/debhelper.mk
Log:
  * debian/rules.d/debhelper.mk: fix regex. Closes: #441824.



Modified: glibc-package/trunk/debian/changelog
===================================================================
--- glibc-package/trunk/debian/changelog	2007-09-12 15:47:45 UTC (rev 2557)
+++ glibc-package/trunk/debian/changelog	2007-09-12 21:34:33 UTC (rev 2558)
@@ -4,10 +4,11 @@
     Closes: bug#441857.
   * any/local-sysmacros.diff: use __inline instead of inline for
     compatibility with ANSI.  Closes: #441959.
-  * patches/localedata/tailor-iso14651_t1.diff: correctly fix fi_FI 
+  * patches/localedata/tailor-iso14651_t1.diff: correctly fix fi_FI
     locale.  Closes: bug#441026.
+  * debian/rules.d/debhelper.mk: fix regex. Closes: #441824.
 
- -- Aurelien Jarno <aurel32@debian.org>  Wed, 12 Sep 2007 17:47:21 +0200
+ -- Aurelien Jarno <aurel32@debian.org>  Wed, 12 Sep 2007 23:33:33 +0200
 
 glibc (2.6.1-3) unstable; urgency=low
 

Modified: glibc-package/trunk/debian/rules.d/debhelper.mk
===================================================================
--- glibc-package/trunk/debian/rules.d/debhelper.mk	2007-09-12 15:47:45 UTC (rev 2557)
+++ glibc-package/trunk/debian/rules.d/debhelper.mk	2007-09-12 21:34:33 UTC (rev 2558)
@@ -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 '.*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_makeshlibs -X/usr/lib/debug -p$(curpass) -V "$(call xx,shlib_dep)"
 



Reply to: