diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2023-07-21 20:18:56 +0300 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2023-08-26 23:40:37 +0300 |
commit | d32df1080f0199f3570a541fcfcf9b5974b771db (patch) | |
tree | 6b88a9605316a6c96790ac13ec99caffc9a542df /arch/x86/um | |
parent | ff3f78607998274460f1742a7dfd853c6124d34a (diff) | |
download | linux-d32df1080f0199f3570a541fcfcf9b5974b771db.tar.xz |
um: Hard-code the result of 'uname -s'
We rely on 'uname -s' returning 'Linux' because there are os-Linux/
directories, but no other os-*/.
Supporting a non-Linux host is unlikely to happen.
Let's hard-code 'Linux'.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
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 cb738967a9f5..8bc72a51b257 100644 --- a/arch/x86/um/Makefile +++ b/arch/x86/um/Makefile @@ -13,7 +13,7 @@ obj-y = bugs_$(BITS).o delay.o fault.o ldt.o \ ptrace_$(BITS).o ptrace_user.o setjmp_$(BITS).o signal.o \ stub_$(BITS).o stub_segv.o \ sys_call_table_$(BITS).o sysrq_$(BITS).o tls_$(BITS).o \ - mem_$(BITS).o subarch.o os-$(OS)/ + mem_$(BITS).o subarch.o os-Linux/ ifeq ($(CONFIG_X86_32),y) |