Gitweb: http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ed2c9fa53b7a3e240a64e6e97494d72d0f80eed0 Commit: ed2c9fa53b7a3e240a64e6e97494d72d0f80eed0 Parent: ec7748b59e214e2c6b7d21ca5f26a760fd6e142b Author: Michal Sojka <[EMAIL PROTECTED]> AuthorDate: Thu Feb 7 17:18:51 2008 +0100 Committer: Sam Ravnborg <[EMAIL PROTECTED]> CommitDate: Sat Feb 9 10:51:47 2008 +0100
Kbuild: Fix deb-pkg target to work with kernel versions ending with -<text-without-digit> If CONIFIG_LOCALVERSION is set for example to -loop, the following error message was generated. dpkg-deb - error: Debian revision (`loop') doesn't contain any digits dpkg-deb: 1 errors in control file The patch solves this by adding a numeric revision to package version. Signed-off-by: Michal Sojka <[EMAIL PROTECTED]> Signed-off-by: Sam Ravnborg <[EMAIL PROTECTED]> --- scripts/package/builddeb | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/scripts/package/builddeb b/scripts/package/builddeb index 0f657b5..ba6bf5d 100644 --- a/scripts/package/builddeb +++ b/scripts/package/builddeb @@ -13,6 +13,7 @@ set -e # Some variables and settings used throughout the script version=$KERNELRELEASE +revision=`cat .version` tmpdir="$objtree/debian/tmp" packagename=linux-$version @@ -65,7 +66,7 @@ done name="Kernel Compiler <$(id -nu)@$(hostname -f)>" # Generate a simple changelog template cat <<EOF > debian/changelog -linux ($version) unstable; urgency=low +linux ($version-$revision) unstable; urgency=low * A standard release - To unsubscribe from this list: send the line "unsubscribe git-commits-head" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html