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

svn path=/dists/trunk/linux-2.6/; revision=15292
This commit is contained in:
Ben Hutchings 2010-02-28 17:02:14 +00:00
parent 3c2a1475b3
commit ca09963962
2 changed files with 8 additions and 1 deletions

7
debian/changelog vendored
View File

@ -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@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 ]

View File

@ -5,7 +5,7 @@ DEB_BUILD_ARCH := $(shell dpkg-architecture -qDEB_BUILD_ARCH)
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