diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2015-04-15 14:19:18 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-04-15 14:19:18 -0400 |
commit | b422b75875a3663f08a9ab5aeb265ed2383cbe2f (patch) | |
tree | 33e1ca04314539fd448f8f199839279798c1c163 /arch/um | |
parent | d488d3a4ce08e96dad5cb3b6117517d57ccec98f (diff) | |
parent | 41b585b2ed793db6f02ec87d0026d73382e8180a (diff) |
Merge branch 'kbuild' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild
Pull kbuild updates from Michal Marek:
"Here is the first round of kbuild changes for v4.1-rc1:
- kallsyms fix for ARM and cleanup
- make dep(end) removed (developers have no sense of nostalgia these
days...)
- include Makefiles by relative path
- stop useless rebuilds of asm-offsets.h and bounds.h"
* 'kbuild' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild:
Kbuild: kallsyms: drop special handling of pre-3.0 GCC symbols
Kbuild: kallsyms: ignore veneers emitted by the ARM linker
kbuild: ia64: use $(src)/Makefile.gate rather than particular path
kbuild: include $(src)/Makefile rather than $(obj)/Makefile
kbuild: use relative path more to include Makefile
kbuild: use relative path to include Makefile
kbuild: do not add $(bounds-file) and $(offsets-file) to targets
kbuild: remove warning about "make depend"
kbuild: Don't reset timestamps in include/generated if not needed
Diffstat (limited to 'arch/um')
-rw-r--r-- | arch/um/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/um/Makefile b/arch/um/Makefile index e4b1a9639c4d..17d4460b1af3 100644 --- a/arch/um/Makefile +++ b/arch/um/Makefile | |||
@@ -43,8 +43,8 @@ endif | |||
43 | 43 | ||
44 | HOST_DIR := arch/$(HEADER_ARCH) | 44 | HOST_DIR := arch/$(HEADER_ARCH) |
45 | 45 | ||
46 | include $(srctree)/$(ARCH_DIR)/Makefile-skas | 46 | include $(ARCH_DIR)/Makefile-skas |
47 | include $(srctree)/$(HOST_DIR)/Makefile.um | 47 | include $(HOST_DIR)/Makefile.um |
48 | 48 | ||
49 | core-y += $(HOST_DIR)/um/ | 49 | core-y += $(HOST_DIR)/um/ |
50 | 50 | ||
@@ -73,7 +73,7 @@ USER_CFLAGS = $(patsubst $(KERNEL_DEFINES),,$(patsubst -D__KERNEL__,,\ | |||
73 | $(filter -I%,$(CFLAGS)) -D_FILE_OFFSET_BITS=64 -idirafter include | 73 | $(filter -I%,$(CFLAGS)) -D_FILE_OFFSET_BITS=64 -idirafter include |
74 | 74 | ||
75 | #This will adjust *FLAGS accordingly to the platform. | 75 | #This will adjust *FLAGS accordingly to the platform. |
76 | include $(srctree)/$(ARCH_DIR)/Makefile-os-$(OS) | 76 | include $(ARCH_DIR)/Makefile-os-$(OS) |
77 | 77 | ||
78 | KBUILD_CPPFLAGS += -I$(srctree)/$(HOST_DIR)/include \ | 78 | KBUILD_CPPFLAGS += -I$(srctree)/$(HOST_DIR)/include \ |
79 | -I$(srctree)/$(HOST_DIR)/include/uapi \ | 79 | -I$(srctree)/$(HOST_DIR)/include/uapi \ |