summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRicardo Salveti <ricardo@opensourcefoundries.com>2018-01-30 18:22:33 -0200
committerBruce Ashfield <bruce.ashfield@windriver.com>2018-01-30 17:18:12 -0500
commit0cdb05a7d8e96c64aa0e2d7b3dd7eac81a241444 (patch)
tree86a1fe93d30d743f9b1262a5afde2e4c42bc4040
parent576a017721f95f6c5cbe022f22660514771d6c5f (diff)
downloadmeta-virtualization-0cdb05a7d8e96c64aa0e2d7b3dd7eac81a241444.tar.gz
xen: use oe.utils.str_filter_out
oe_filter_out is not available in oe-core anymore so use oe.utils.str_filter_out instead. Signed-off-by: Ricardo Salveti <ricardo@opensourcefoundries.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
-rw-r--r--recipes-extended/xen/xen.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-extended/xen/xen.inc b/recipes-extended/xen/xen.inc
index 15ec8cbb..8dfe589a 100644
--- a/recipes-extended/xen/xen.inc
+++ b/recipes-extended/xen/xen.inc
@@ -830,7 +830,7 @@ export LDFLAGS=""
830# Yocto injects -mfpmath=sse for some machine types into the CFLAGS which 830# Yocto injects -mfpmath=sse for some machine types into the CFLAGS which
831# conflicts with -mno-sse so instead we strip -mfpmath=sse instead of 831# conflicts with -mno-sse so instead we strip -mfpmath=sse instead of
832# patching the build to be ok with this 832# patching the build to be ok with this
833TUNE_CCARGS := "${@oe_filter_out('-mfpmath=sse', '${TUNE_CCARGS}', d)}" 833TUNE_CCARGS := "${@oe.utils.str_filter_out('-mfpmath=sse', '${TUNE_CCARGS}', d)}"
834 834
835EXTRA_OECONF += " \ 835EXTRA_OECONF += " \
836 --exec-prefix=/usr \ 836 --exec-prefix=/usr \