Commit 37131ec4 authored by Masahiro Yamada's avatar Masahiro Yamada

kbuild: mkcompile_h: do not create .version

This script does not need to create .version; it will be created by
scripts/link-vmlinux.sh later.  Clean-up the code slightly.
Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
parent 278ae604
......@@ -27,12 +27,7 @@ LC_ALL=C
export LC_ALL
if [ -z "$KBUILD_BUILD_VERSION" ]; then
if [ -r .version ]; then
VERSION=`cat .version`
else
VERSION=0
echo 0 > .version
fi
VERSION=$(cat .version 2>/dev/null || echo 1)
else
VERSION=$KBUILD_BUILD_VERSION
fi
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment