no need to call compile,install on the kernel-headers dir - this gets rid of another unnecessary autorebuild check
SVN-Revision: 8247
This commit is contained in:
parent
7b6d8470c6
commit
a37c85d5fe
2 changed files with 13 additions and 13 deletions
|
@ -10,6 +10,8 @@ curdir:=toolchain
|
||||||
|
|
||||||
# subdirectories to descend into
|
# subdirectories to descend into
|
||||||
$(curdir)/builddirs := kernel-headers $(if $(CONFIG_GDB),gdb) $(if $(CONFIG_NATIVE_TOOLCHAIN),,binutils gcc uClibc)
|
$(curdir)/builddirs := kernel-headers $(if $(CONFIG_GDB),gdb) $(if $(CONFIG_NATIVE_TOOLCHAIN),,binutils gcc uClibc)
|
||||||
|
$(curdir)/builddirs-compile:=. $(filter-out kernel-headers,$($(curdir)/builddirs))
|
||||||
|
$(curdir)/builddirs-install:=$($(curdir)/builddirs-compile)
|
||||||
|
|
||||||
# builddir dependencies
|
# builddir dependencies
|
||||||
$(curdir)/uClibc/prepare:=$(curdir)/kernel-headers/prepare
|
$(curdir)/uClibc/prepare:=$(curdir)/kernel-headers/prepare
|
||||||
|
|
|
@ -34,18 +34,6 @@ define Build/Prepare/cris
|
||||||
ln -sf $(PKG_BUILD_DIR) $(LINUX_HEADERS_DIR)
|
ln -sf $(PKG_BUILD_DIR) $(LINUX_HEADERS_DIR)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
ifdef Build/Prepare/$(ARCH)
|
|
||||||
define Build/Prepare
|
|
||||||
$(call Build/Prepare/$(ARCH))
|
|
||||||
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
|
|
||||||
|
|
||||||
define Build/Configure/powerpc
|
define Build/Configure/powerpc
|
||||||
$(CP) $(PKG_BUILD_DIR)/include/asm-ppc/* $(PKG_BUILD_DIR)/include/asm-powerpc/
|
$(CP) $(PKG_BUILD_DIR)/include/asm-ppc/* $(PKG_BUILD_DIR)/include/asm-powerpc/
|
||||||
rm -rf $(PKG_BUILD_DIR)/include/asm-ppc
|
rm -rf $(PKG_BUILD_DIR)/include/asm-ppc
|
||||||
|
@ -60,12 +48,22 @@ KMAKE := $(MAKE) -C $(PKG_BUILD_DIR) \
|
||||||
ARCH=$(LINUX_KARCH) \
|
ARCH=$(LINUX_KARCH) \
|
||||||
CONFIG_SHELL=$(BASH)
|
CONFIG_SHELL=$(BASH)
|
||||||
|
|
||||||
define Build/Configure
|
define Build/Prepare/Default
|
||||||
|
$(call Kernel/Prepare/Default)
|
||||||
|
$(SED) 's/@expr length/@-expr length/' $(PKG_BUILD_DIR)/Makefile
|
||||||
|
ln -sf $(PKG_BUILD_DIR) $(LINUX_HEADERS_DIR)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Build/Prepare
|
||||||
|
$(if $(Build/Prepare/$(ARCH)),$(Build/Prepare/$(ARCH)),$(Build/Prepare/Default))
|
||||||
yes '' | $(KMAKE) oldconfig
|
yes '' | $(KMAKE) oldconfig
|
||||||
$(KMAKE) include/linux/version.h include/asm
|
$(KMAKE) include/linux/version.h include/asm
|
||||||
$(call Build/Configure/$(ARCH))
|
$(call Build/Configure/$(ARCH))
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Build/Configure
|
||||||
|
endef
|
||||||
|
|
||||||
define Build/Compile
|
define Build/Compile
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue