diff options
author | Johannes Berg <johannes.berg@intel.com> | 2021-09-28 11:51:46 +0200 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2021-12-21 21:13:44 +0100 |
commit | 494545aa9b50a1dcaafcb235e2cb40b246c65169 (patch) | |
tree | bc323c2f8241e80827a6cff36a7255bf5c5afc72 /arch/x86/um | |
parent | bbe33504d4a7fdab9011211e55e262c869b3f6cc (diff) |
uml: x86: add FORCE to user_constants.h
The build system has started warning when filechk is called
without FORCE:
arch/x86/um/Makefile:44: FORCE prerequisite is missing
Add FORCE to make sure the file is checked/rebuilt when
necessary (and to quiet up the warning.)
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Reviewed-by: David Gow <davidgow@google.com>
Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'arch/x86/um')
-rw-r--r-- | arch/x86/um/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/um/Makefile b/arch/x86/um/Makefile index 5ccb18290d71..ba5789c35809 100644 --- a/arch/x86/um/Makefile +++ b/arch/x86/um/Makefile @@ -40,7 +40,7 @@ $(obj)/user-offsets.s: c_flags = -Wp,-MD,$(depfile) $(USER_CFLAGS) \ -Iarch/x86/include/generated targets += user-offsets.s -include/generated/user_constants.h: $(obj)/user-offsets.s +include/generated/user_constants.h: $(obj)/user-offsets.s FORCE $(call filechk,offsets,__USER_CONSTANT_H__) UNPROFILE_OBJS := stub_segv.o |