diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-06-25 16:33:11 +0900 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2019-06-25 09:52:06 +0200 |
commit | 87b61864d7ab2aec5c212ff18950d4972f0dfb4e (patch) | |
tree | 086803269528f28c050f47be6fd7f213b4ef0f76 /arch | |
parent | bc53d3d777f81385c1bb08b07bd1c06450ecc2c1 (diff) | |
download | lwn-87b61864d7ab2aec5c212ff18950d4972f0dfb4e.tar.gz lwn-87b61864d7ab2aec5c212ff18950d4972f0dfb4e.zip |
x86/build: Remove redundant 'clean-files += capflags.c'
All the files added to 'targets' are cleaned. Adding the same file to both
'targets' and 'clean-files' is redundant.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Borislav Petkov <bp@alien8.de>
Link: https://lkml.kernel.org/r/20190625073311.18303-1-yamada.masahiro@socionext.com
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/kernel/cpu/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/x86/kernel/cpu/Makefile b/arch/x86/kernel/cpu/Makefile index 5102bf7c8192..50abae9a72e5 100644 --- a/arch/x86/kernel/cpu/Makefile +++ b/arch/x86/kernel/cpu/Makefile @@ -54,8 +54,7 @@ quiet_cmd_mkcapflags = MKCAP $@ cpufeature = $(src)/../../include/asm/cpufeatures.h -targets += capflags.c $(obj)/capflags.c: $(cpufeature) $(src)/mkcapflags.sh FORCE $(call if_changed,mkcapflags) endif -clean-files += capflags.c +targets += capflags.c |