summaryrefslogtreecommitdiffstats
path: root/recipes-bsp/vpe-tests
diff options
context:
space:
mode:
authorDenys Dmytriyenko <denys@ti.com>2016-05-03 06:09:26 +0000
committerDenys Dmytriyenko <denys@ti.com>2016-05-02 22:18:59 -0400
commit55408800f8842cda8d3b8d32c9b8737a1b5ef7f7 (patch)
tree852aaa83251a6b78ce7d0f59d3b5807606a3b991 /recipes-bsp/vpe-tests
parent9b2e9feb4903fea29a16b62d979309f83ff7bbb5 (diff)
downloadmeta-ti-55408800f8842cda8d3b8d32c9b8737a1b5ef7f7.tar.gz
recipes: replace remaining base_contains with bb.utils.contains
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes-bsp/vpe-tests')
-rw-r--r--recipes-bsp/vpe-tests/vpe-tests_git.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-bsp/vpe-tests/vpe-tests_git.bb b/recipes-bsp/vpe-tests/vpe-tests_git.bb
index 951544be..92c425b1 100644
--- a/recipes-bsp/vpe-tests/vpe-tests_git.bb
+++ b/recipes-bsp/vpe-tests/vpe-tests_git.bb
@@ -18,7 +18,7 @@ SRC_URI = "git://git.ti.com/vpe_tests/vpe_tests.git;protocol=git;branch=${BRANCH
18 18
19S = "${WORKDIR}/git" 19S = "${WORKDIR}/git"
20 20
21FLOATABI = "${@base_contains("TUNE_FEATURES", "vfp", base_contains("TUNE_FEATURES", "callconvention-hard", " -mfloat-abi=hard", " -mfloat-abi=softfp", d), "" ,d)}" 21FLOATABI = "${@bb.utils.contains("TUNE_FEATURES", "vfp", bb.utils.contains("TUNE_FEATURES", "callconvention-hard", " -mfloat-abi=hard", " -mfloat-abi=softfp", d), "" ,d)}"
22 22
23# The test application needs additional include headers from the kernel 23# The test application needs additional include headers from the kernel
24EXTRA_OEMAKE = 'CROSS_COMPILE="${TARGET_PREFIX}" CC="${TARGET_PREFIX}gcc ${FLOATABI}" KDIR="${STAGING_KERNEL_DIR}/include/uapi -I${STAGING_KERNEL_DIR}/include"' 24EXTRA_OEMAKE = 'CROSS_COMPILE="${TARGET_PREFIX}" CC="${TARGET_PREFIX}gcc ${FLOATABI}" KDIR="${STAGING_KERNEL_DIR}/include/uapi -I${STAGING_KERNEL_DIR}/include"'