diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2017-09-22 01:31:13 -0400 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2017-10-09 10:28:46 -0400 |
commit | 278ae6040397f37fa6a96a6b86ed02d4762080a7 (patch) | |
tree | f8796d31b30bf077b0868a49bc8a0dabf401bde0 /Makefile | |
parent | f231e43333124d92a82acd19431f8104b8e48a75 (diff) |
kbuild: link-vmlinux.sh: simplify .version increment
Since commit 1f2bfbd00e46 ("kbuild: link of vmlinux moved to a
script"), it is easy to increment .version without using a temporary
file .old_version.
I do not see anybody who creates the .tmp_version. Probably it is a
left-over of commit 4e25d8bb9550fb ("[PATCH] kbuild: adjust .version
updating"). Just remove it.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1278,7 +1278,7 @@ CLEAN_DIRS += $(MODVERDIR) | |||
1278 | # Directories & files removed with 'make mrproper' | 1278 | # Directories & files removed with 'make mrproper' |
1279 | MRPROPER_DIRS += include/config usr/include include/generated \ | 1279 | MRPROPER_DIRS += include/config usr/include include/generated \ |
1280 | arch/*/include/generated .tmp_objdiff | 1280 | arch/*/include/generated .tmp_objdiff |
1281 | MRPROPER_FILES += .config .config.old .version .old_version \ | 1281 | MRPROPER_FILES += .config .config.old .version \ |
1282 | Module.symvers tags TAGS cscope* GPATH GTAGS GRTAGS GSYMS \ | 1282 | Module.symvers tags TAGS cscope* GPATH GTAGS GRTAGS GSYMS \ |
1283 | signing_key.pem signing_key.priv signing_key.x509 \ | 1283 | signing_key.pem signing_key.priv signing_key.x509 \ |
1284 | x509.genkey extra_certificates signing_key.x509.keyid \ | 1284 | x509.genkey extra_certificates signing_key.x509.keyid \ |