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

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



Author: aurel32
Date: 2007-08-06 21:27:07 +0000 (Mon, 06 Aug 2007)
New Revision: 2498

Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/rules.d/debhelper.mk
Log:
 * debian/rules.d/debhelper.mk: fix arguments order when calling find.



Modified: glibc-package/trunk/debian/changelog
===================================================================
--- glibc-package/trunk/debian/changelog	2007-08-04 22:39:25 UTC (rev 2497)
+++ glibc-package/trunk/debian/changelog	2007-08-06 21:27:07 UTC (rev 2498)
@@ -10,14 +10,15 @@
   * Remove sparc/submitted-gscope_flag.diff (merged upstream).
   * any/local-bindresvport_blacklist.diff: patch from openSUSE to
     add support for /etc/bindresvport.blacklist.
-  * debian/local/etc/bindresvport.blacklist: new default configuration 
+  * debian/local/etc/bindresvport.blacklist: new default configuration
     file.
   * debian/debhelper.in/libc.install: install it!
+  * debian/rules.d/debhelper.mk: fix arguments order when calling find.
 
   [ Samuel Thibault ]
   * hurd-i386/local-gscope.diff: resync, mostly merged upstream.
 
- -- Aurelien Jarno <aurel32@debian.org>  Wed, 01 Aug 2007 16:40:01 +0200
+ -- Aurelien Jarno <aurel32@debian.org>  Mon, 06 Aug 2007 23:25:42 +0200
 
 glibc (2.6-5) unstable; urgency=low
 

Modified: glibc-package/trunk/debian/rules.d/debhelper.mk
===================================================================
--- glibc-package/trunk/debian/rules.d/debhelper.mk	2007-08-04 22:39:25 UTC (rev 2497)
+++ glibc-package/trunk/debian/rules.d/debhelper.mk	2007-08-06 21:27:07 UTC (rev 2498)
@@ -165,7 +165,7 @@
 debhelper: $(stamp)debhelper
 $(stamp)debhelper:
 
-	for x in `find debian/debhelper.in -type f -maxdepth 1`; do \
+	for x in `find debian/debhelper.in -maxdepth 1 -type f`; do \
 	  y=debian/`basename $$x`; \
 	  z=`echo $$y | sed -e 's#/libc#/$(libc)#'`; \
 	  cp $$x $$z; \



Reply to: