diff options
author | John Crispin <john@openwrt.org> | 2012-12-16 11:04:27 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2012-12-16 11:04:27 +0000 |
commit | e9c0b958295bb055fefc03b1e356051f99218f28 (patch) | |
tree | 2884dc302a0f87ff335a0d5a31a8b9a20384f61b | |
parent | 7bcb6b54791ca68ed3433ea0db1bba270d7d0f25 (diff) | |
download | mtk-20170518-e9c0b958295bb055fefc03b1e356051f99218f28.zip mtk-20170518-e9c0b958295bb055fefc03b1e356051f99218f28.tar.gz mtk-20170518-e9c0b958295bb055fefc03b1e356051f99218f28.tar.bz2 |
fixes uapi helper define
SVN-Revision: 34715
-rw-r--r-- | include/kernel.mk | 5 | ||||
-rw-r--r-- | package/network/services/ppp/Makefile | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/include/kernel.mk b/include/kernel.mk index eabf948..6185237 100644 --- a/include/kernel.mk +++ b/include/kernel.mk @@ -35,8 +35,9 @@ else endif KERNEL_BUILD_DIR ?= $(BUILD_DIR)/linux-$(BOARD)$(if $(SUBTARGET),_$(SUBTARGET)) LINUX_DIR ?= $(KERNEL_BUILD_DIR)/linux-$(LINUX_VERSION) - LINUX_UAPI_DIR=$(firstword $(wildcard $(LINUX_DIR)/include/uapi $(LINUX_DIR)/include)) - + ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,3.7.0)),1) + LINUX_UAPI_DIR=uapi/ + endif LINUX_VERMAGIC:=$(strip $(shell cat $(LINUX_DIR)/.vermagic 2>/dev/null)) LINUX_VERMAGIC:=$(if $(LINUX_VERMAGIC),$(LINUX_VERMAGIC),unknown) diff --git a/package/network/services/ppp/Makefile b/package/network/services/ppp/Makefile index 49c6a40..71c5981 100644 --- a/package/network/services/ppp/Makefile +++ b/package/network/services/ppp/Makefile @@ -158,7 +158,7 @@ $(call Build/Configure/Default,, \ mkdir -p $(PKG_BUILD_DIR)/pppd/plugins/pppoatm/linux cp \ $(LINUX_DIR)/include/linux/compiler.h \ - $(LINUX_UAPI_DIR)/linux/atm*.h \ + $(LINUX_DIR)/include/$(LINUX_UAPI_DIR)linux/atm*.h \ $(PKG_BUILD_DIR)/pppd/plugins/pppoatm/linux/ endef |