Fixed a bug in the kernel-headers/Makefile introduced by the cris merge

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7444 3c298f89-4303-0410-b956-a3cf2f4a3e73
master
John Crispin 2007-06-02 09:27:07 +00:00
parent ea9d43e9cf
commit efa6703d98
1 changed files with 4 additions and 2 deletions

View File

@ -15,8 +15,8 @@ PKG_SOURCE_URL=$(LINUX_SITE)
PKG_BUILD_DIR:=$(TOOLCHAIN_BUILD_DIR)/linux-$(PKG_VERSION)
LINUX_DIR:=$(PKG_BUILD_DIR)/linux-$(LINUX_VERSION)
KERNEL_BUILD_DIR:=$(PKG_BUILD_DIR)
LINUX_DIR:=$(PKG_BUILD_DIR)
KERNEL_BUILD_DIR:=$(TOOLCHAIN_BUILD_DIR)
include $(INCLUDE_DIR)/kernel-defaults.mk
include $(INCLUDE_DIR)/host-build.mk
@ -39,6 +39,8 @@ endef
else
define Build/Prepare
$(call Kernel/Prepare/Default)
$(SED) 's/@expr length/@-expr length/' $(PKG_BUILD_DIR)/Makefile
ln -sf $(PKG_BUILD_DIR) $(LINUX_HEADERS_DIR)
endef
endif