diff options
author | Hongxu Jia <hongxu.jia@windriver.com> | 2019-05-15 11:17:56 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-06-04 09:09:42 +0100 |
commit | f6cc637b83baa70d5e988a6e23e982ede7602503 (patch) | |
tree | dd72948df6d821d1ee4c531d62c167d66de43274 /meta | |
parent | 707c0830c67a27250475a5985a1c1e7c84e3231d (diff) | |
download | poky-f6cc637b83baa70d5e988a6e23e982ede7602503.tar.gz |
grub/grub-efi: fix unrecognized command line option '-pipe-Wno-error' in CFLAGS
Since commit [330fc83 grub: Use -Wno-error instead of doing this
on a per-warning basis] applied in oe-core, it missed a space
in append.
(From OE-Core rev: 62c3c8277fcea61940a4433d3796a4cec1b5f577)
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-bsp/grub/grub2.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-bsp/grub/grub2.inc b/meta/recipes-bsp/grub/grub2.inc index 7d8c280b3f..bac2d7d414 100644 --- a/meta/recipes-bsp/grub/grub2.inc +++ b/meta/recipes-bsp/grub/grub2.inc | |||
@@ -60,7 +60,7 @@ BUILD_CFLAGS = "" | |||
60 | BUILD_CXXFLAGS = "" | 60 | BUILD_CXXFLAGS = "" |
61 | BUILD_LDFLAGS = "" | 61 | BUILD_LDFLAGS = "" |
62 | 62 | ||
63 | CFLAGS_append = "-Wno-error" | 63 | CFLAGS_append = " -Wno-error" |
64 | 64 | ||
65 | do_configure_prepend() { | 65 | do_configure_prepend() { |
66 | # The grub2 configure script uses variables such as TARGET_CFLAGS etc | 66 | # The grub2 configure script uses variables such as TARGET_CFLAGS etc |