[oe-commits] Stefan Schmidt : linux-bug_2.6.27.2.bb: Fix install.

git version control git at git.openembedded.org
Mon May 31 16:38:39 UTC 2010


Module: openembedded.git
Branch: org.openembedded.dev
Commit: 55f3c701b2d748e935af226fc4b4e987835fa03f
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=55f3c701b2d748e935af226fc4b4e987835fa03f

Author: Stefan Schmidt <stefan at buglabs.net>
Date:   Mon May 31 11:00:51 2010 -0400

linux-bug_2.6.27.2.bb: Fix install.

We have been in trying to copy the files from the wrong base dir resulting
in a file not found. Starting from ${S} is the right path.

---

 recipes/linux/linux-bug_2.6.27.2.bb |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/linux/linux-bug_2.6.27.2.bb b/recipes/linux/linux-bug_2.6.27.2.bb
index 469a6e3..680d597 100644
--- a/recipes/linux/linux-bug_2.6.27.2.bb
+++ b/recipes/linux/linux-bug_2.6.27.2.bb
@@ -25,11 +25,11 @@ do_install_append() {
 }
 
 do_install_append() {
-	cp -fR arch/arm/include/asm/* $kerneldir/include/asm/
+	cp -fR ${S}/arch/arm/include/asm/* $kerneldir/include/asm/
 	if [ ! -e $kerneldir/include/mach ]; then
 		mkdir $kerneldir/include/mach
 	fi
-	cp -fR arch/arm/plat-mxc/include/mach/* $kerneldir/include/mach/
+	cp -fR ${S}/arch/arm/plat-mxc/include/mach/* $kerneldir/include/mach/
 }
 
 FILESDIR = "${WORKDIR}"





More information about the Openembedded-commits mailing list