[kernel] r15292 - in dists/trunk/linux-2.6/debian: . modules

Ben Hutchings benh at alioth.debian.org
Sun Feb 28 17:02:16 UTC 2010


Author: benh
Date: Sun Feb 28 17:02:14 2010
New Revision: 15292

Log:
Fix regexp for binNMU versions in modules/rules.include (Closes: #524632)

Modified:
   dists/trunk/linux-2.6/debian/changelog
   dists/trunk/linux-2.6/debian/modules/rules.include

Modified: dists/trunk/linux-2.6/debian/changelog
==============================================================================
--- dists/trunk/linux-2.6/debian/changelog	Sun Feb 28 16:51:21 2010	(r15291)
+++ dists/trunk/linux-2.6/debian/changelog	Sun Feb 28 17:02:14 2010	(r15292)
@@ -1,3 +1,10 @@
+linux-2.6 (2.6.33-1~experimental.3) UNRELEASED; urgency=low
+
+  [ Ben Hutchings ]
+  * Fix regexp for binNMU versions in modules/rules.include (Closes: #524632)
+
+ -- Ben Hutchings <ben at decadent.org.uk>  Sun, 28 Feb 2010 17:01:33 +0000
+
 linux-2.6 (2.6.33-1~experimental.2) experimental; urgency=low
 
   [ Ben Hutchings ]

Modified: dists/trunk/linux-2.6/debian/modules/rules.include
==============================================================================
--- dists/trunk/linux-2.6/debian/modules/rules.include	Sun Feb 28 16:51:21 2010	(r15291)
+++ dists/trunk/linux-2.6/debian/modules/rules.include	Sun Feb 28 17:02:14 2010	(r15292)
@@ -5,7 +5,7 @@
 
 include $(__MODULES_DIR)rules.defs
 
-__BINNMU := $(shell dpkg-parsechangelog | sed -ne 's,^Version: .*\+b\(.*\)$$,\1,p')
+__BINNMU := $(shell dpkg-parsechangelog | sed -rne 's,^Version: .*\+b([0-9]+)$$,\1,p')
 
 BUILD_STAMP = $(STAMPS_DIR)/build-base
 



More information about the Kernel-svn-changes mailing list