diff options
author | Joshua Lock <joshua.g.lock@intel.com> | 2016-01-19 10:44:07 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-19 17:40:20 +0000 |
commit | 2dbd61f242299de2c687a3042656b3a8c3553a04 (patch) | |
tree | 63c2d1d4b4335e46277a834bb43ac120bb2b96ca /meta/recipes-core | |
parent | 32eeb004f9a26189d98c24521eee5bb66dc86899 (diff) | |
download | poky-2dbd61f242299de2c687a3042656b3a8c3553a04.tar.gz |
uclibc: remove a use of immediate expansion and oe_filter_out ()
The remove overrides syntax is much clearer here, and more closely
matches the preferred style for modern metadata.
(From OE-Core rev: 7e6695f4c42a642276731c13cc3abb02fc64e2b3)
Signed-off-by: Joshua Lock <joshua.g.lock@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/uclibc/uclibc.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/uclibc/uclibc.inc b/meta/recipes-core/uclibc/uclibc.inc index 2b34c34e0d..b63158ac40 100644 --- a/meta/recipes-core/uclibc/uclibc.inc +++ b/meta/recipes-core/uclibc/uclibc.inc | |||
@@ -62,7 +62,7 @@ export V="2" | |||
62 | # -O<n> -fno-omit-frame-pointer ends up with GCC ICE on thumb as reported | 62 | # -O<n> -fno-omit-frame-pointer ends up with GCC ICE on thumb as reported |
63 | # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44860 | 63 | # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44860 |
64 | # | 64 | # |
65 | CFLAGS_arm := "${@oe_filter_out('-fno-omit-frame-pointer', '${CFLAGS}', d)}" | 65 | CFLAGS_remove_arm = "-fno-omit-frame-pointer" |
66 | UCLIBC_EXTRA_CFLAGS := "${@oe_filter_out('(-I\S+|-i\S+)', '${CFLAGS}', d)}" | 66 | UCLIBC_EXTRA_CFLAGS := "${@oe_filter_out('(-I\S+|-i\S+)', '${CFLAGS}', d)}" |
67 | 67 | ||
68 | configmangle = '/^KERNEL_HEADERS/d; \ | 68 | configmangle = '/^KERNEL_HEADERS/d; \ |