diff options
author | Nitin A Kamble <nitin.a.kamble@intel.com> | 2013-03-26 09:51:45 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-26 17:53:45 +0000 |
commit | 21288ac9da291c73fec4601013128158f5da0897 (patch) | |
tree | 2b30d14fde903e3d53d4e87602cfd34f182d94db /meta | |
parent | 4bf20a38f220b6627def6c441a7a49e5dc70f679 (diff) | |
download | poky-21288ac9da291c73fec4601013128158f5da0897.tar.gz |
grub-efi-native_2.00.bb: fix a build issue
Due to recent change in the oecore layer grub-efi recipe uses separate
builddir and the paths used in the do_deply need to change accordingly.
This change avoids this build issue:
install: cannot stat `/build-fri2/tmp/work/x86_64-linux/grub-efi-i586-native/2.00-r1/grub-2.00/bootia32.efi': No such file or directory
ERROR: Function failed: do_deploy (see /build-fri2/tmp/work/x86_64-linux/grub-efi-i586-native/2.00-r1/temp/log.do_deploy.5875 for further information)
(From OE-Core rev: 11ba0231244b8a27939969353e3aa668ce78f7c6)
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-bsp/grub/grub-efi-native_2.00.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-bsp/grub/grub-efi-native_2.00.bb b/meta/recipes-bsp/grub/grub-efi-native_2.00.bb index 14ab9ea7b9..6f8ba8e84f 100644 --- a/meta/recipes-bsp/grub/grub-efi-native_2.00.bb +++ b/meta/recipes-bsp/grub/grub-efi-native_2.00.bb | |||
@@ -71,7 +71,7 @@ do_mkimage() { | |||
71 | addtask mkimage after do_compile before do_install | 71 | addtask mkimage after do_compile before do_install |
72 | 72 | ||
73 | do_deploy() { | 73 | do_deploy() { |
74 | install -m 644 ${S}/${GRUB_IMAGE} ${DEPLOYDIR} | 74 | install -m 644 ${B}/${GRUB_IMAGE} ${DEPLOYDIR} |
75 | } | 75 | } |
76 | addtask deploy after do_install before do_build | 76 | addtask deploy after do_install before do_build |
77 | 77 | ||