diff options
author | Elliott Hughes <enh@google.com> | 2014-01-10 16:35:08 -0800 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2014-01-10 16:35:08 -0800 |
commit | dddb566eba8cd666b6f3b70067e77acb4e1656de (patch) | |
tree | fdf01ad2dff6cf762eeecece05d184a785e90462 /core/combo/TARGET_linux-arm.mk | |
parent | a26ea82e6a226575f19fec6b5bea111cbe20c233 (diff) | |
download | build-dddb566eba8cd666b6f3b70067e77acb4e1656de.zip build-dddb566eba8cd666b6f3b70067e77acb4e1656de.tar.gz build-dddb566eba8cd666b6f3b70067e77acb4e1656de.tar.bz2 |
Remove obsolete CUSTOM_KERNEL_HEADERS.
Change-Id: Id260dd351b90f065eee56e231d4c341b18c1b27f
Diffstat (limited to 'core/combo/TARGET_linux-arm.mk')
-rw-r--r-- | core/combo/TARGET_linux-arm.mk | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/core/combo/TARGET_linux-arm.mk b/core/combo/TARGET_linux-arm.mk index a946b23..3b95c5c 100644 --- a/core/combo/TARGET_linux-arm.mk +++ b/core/combo/TARGET_linux-arm.mk @@ -195,17 +195,8 @@ else endif -# unless CUSTOM_KERNEL_HEADERS is defined, we're going to use -# symlinks located in out/ to point to the appropriate kernel -# headers. see 'config/kernel_headers.make' for more details -# -ifneq ($(CUSTOM_KERNEL_HEADERS),) - KERNEL_HEADERS_COMMON := $(CUSTOM_KERNEL_HEADERS) - KERNEL_HEADERS_ARCH := $(CUSTOM_KERNEL_HEADERS) -else - KERNEL_HEADERS_COMMON := $(libc_root)/kernel/uapi - KERNEL_HEADERS_ARCH := $(libc_root)/kernel/uapi/asm-$(TARGET_ARCH) -endif +KERNEL_HEADERS_COMMON := $(libc_root)/kernel/uapi +KERNEL_HEADERS_ARCH := $(libc_root)/kernel/uapi/asm-$(TARGET_ARCH) KERNEL_HEADERS := $(KERNEL_HEADERS_COMMON) $(KERNEL_HEADERS_ARCH) TARGET_C_INCLUDES := \ |