Commit d5d2d4cc authored by Masahiro Yamada's avatar Masahiro Yamada
Browse files

kbuild: rpm-pkg: derive the Version from %{KERNELRELEASE}



Avoid hard-coding the Version field in the generated spec file.

Signed-off-by: default avatarMasahiro Yamada <masahiroy@kernel.org>
parent fe66b5d2
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -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