From: Ting Liu Date: Fri, 17 Jul 2015 05:36:44 +0000 (+0800) Subject: asf: use KBUILD_OUTPUT to point to build-artifacts X-Git-Tag: 2.1~510 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=551618328636c4fa5b008d0c7546f03dfeabf554;p=meta-freescale.git asf: use KBUILD_OUTPUT to point to build-artifacts In poky commit 46cdaf1, the kernel build output was put into kernel-build-artifacts, and kernel-source is kept "pristine". KERNEL_PATH points to kernel-source, while KBUILD_OUTPUT points to build-artifacts which can be used for external module build. asf Makefile tries to include the .config, use KBUILD_OUTPUT to avoid build error. It is needed to process all the Makefile with new revision. Signed-off-by: Ting Liu Acked-by: Otavio Salvador Signed-off-by: Otavio Salvador --- diff --git a/meta-fsl-ppc/recipes-kernel/asf/asf_git.bb b/meta-fsl-ppc/recipes-kernel/asf/asf_git.bb index 0263b058..6e25ecf5 100644 --- a/meta-fsl-ppc/recipes-kernel/asf/asf_git.bb +++ b/meta-fsl-ppc/recipes-kernel/asf/asf_git.bb @@ -17,7 +17,8 @@ INHIBIT_PACKAGE_STRIP = "1" do_configure[depends] += "virtual/kernel:do_shared_workdir" do_configure_prepend () { - sed -i 's,$(KERNEL_PATH)/.config,$(KBUILD_OUTPUT)/.config,' ${S}/Makefile + find ${S} -name Makefile -exec \ + sed -i 's,$(KERNEL_PATH)/.config,$(KBUILD_OUTPUT)/.config,' {} \; } do_install(){