From: Michal Marek Date: Mon, 2 May 2011 16:01:06 +0000 (+0200) Subject: kbuild: Fix Makefile.asm-generic for um X-Git-Tag: Ubuntu-5.10.0-12.13~24332^2~6 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=7a04fc94d9e45de50827ba6ff764f22990d55823;p=mirror_ubuntu-hirsute-kernel.git kbuild: Fix Makefile.asm-generic for um Do nothing if arch/$(SRCARCH)/include/asm/Kbuild does not exist, which is the case of um. Reported-by: Randy Dunlap Signed-off-by: Michal Marek Acked-by: Randy Dunlap Acked-by: Sam Ravnborg --- diff --git a/scripts/Makefile.asm-generic b/scripts/Makefile.asm-generic index a687cb697e35..490122c3e2aa 100644 --- a/scripts/Makefile.asm-generic +++ b/scripts/Makefile.asm-generic @@ -6,7 +6,7 @@ # a small wrapper file in $(obj) (arch/$(SRCARCH)/include/generated/asm) kbuild-file := $(srctree)/arch/$(SRCARCH)/include/asm/Kbuild -include $(kbuild-file) +-include $(kbuild-file) include scripts/Kbuild.include