flac: Enable VSX when vsx is in tune features

This ensures that, support is not enabled for machines which do not
support VSX

(From OE-Core rev: cd38be40cd2d65787dd6f6f6667c320f4865716e)

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Khem Raj
2019-12-05 17:32:37 -08:00
committed by Richard Purdie
parent 22e4a63816
commit cc975d8bca

View File

@@ -33,6 +33,7 @@ EXTRA_OECONF = "--disable-oggtest \
"
EXTRA_OECONF += "${@bb.utils.contains("TUNE_FEATURES", "altivec", " --enable-altivec", " --disable-altivec", d)}"
EXTRA_OECONF += "${@bb.utils.contains("TUNE_FEATURES", "vsx", " --enable-vsx", " --disable-vsx", d)}"
EXTRA_OECONF += "${@bb.utils.contains("TUNE_FEATURES", "core2", " --enable-sse", "", d)}"
EXTRA_OECONF += "${@bb.utils.contains("TUNE_FEATURES", "corei7", " --enable-sse", "", d)}"