[kernel] r7423 - dists/trunk/linux-2.6/debian/bin

Bastian Blank waldi at costa.debian.org
Thu Sep 14 12:15:17 UTC 2006


Author: waldi
Date: Thu Sep 14 12:15:17 2006
New Revision: 7423

Modified:
   dists/trunk/linux-2.6/debian/bin/check-patches.sh

Log:
debian/bin/check-patches.sh: Fix.


Modified: dists/trunk/linux-2.6/debian/bin/check-patches.sh
==============================================================================
--- dists/trunk/linux-2.6/debian/bin/check-patches.sh	(original)
+++ dists/trunk/linux-2.6/debian/bin/check-patches.sh	Thu Sep 14 12:15:17 2006
@@ -2,8 +2,8 @@
 
 TMPDIR=$(mktemp -d)
 trap "rm -rf $TMPDIR" EXIT
-awk '{if (NF >= 2) print $2}' debian/patches/series/* | sort -u > $TMPDIR/used
-find debian/patches -maxdepth 1 -type f -printf "%f\n" | sort > $TMPDIR/avail
+awk '{if (NF >= 2) print "debian/patches/" $2}' debian/patches/series/* | sort -u > $TMPDIR/used
+find debian/patches ! -path '*/series*' -type f -printf "%p\n" | sort > $TMPDIR/avail
 echo "Used patches"
 echo "=============="
 cat $TMPDIR/used



More information about the Kernel-svn-changes mailing list