mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 12:11:40 +00:00
kbuild: rpm-pkg: derive the Version from %{KERNELRELEASE}
Avoid hard-coding the Version field in the generated spec file. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
This commit is contained in:
parent
fe66b5d2ae
commit
d5d2d4cc60
@ -27,8 +27,6 @@ else
|
||||
M=DEL
|
||||
fi
|
||||
|
||||
__KERNELRELEASE=$(echo $KERNELRELEASE | sed -e "s/-/_/g")
|
||||
|
||||
# We can label the here-doc lines for conditional output to the spec file
|
||||
#
|
||||
# Labels:
|
||||
@ -43,7 +41,7 @@ sed -e '/^DEL/d' -e 's/^\t*//' <<EOF
|
||||
|
||||
Name: kernel
|
||||
Summary: The Linux Kernel
|
||||
Version: $__KERNELRELEASE
|
||||
Version: %(echo %{KERNELRELEASE} | sed -e 's/-/_/g')
|
||||
Release: $(cat .version 2>/dev/null || echo 1)
|
||||
License: GPL
|
||||
Group: System Environment/Kernel
|
||||
|
Loading…
Reference in New Issue
Block a user