From 32da05fa8ff6bd713fbf691bc549857aa0737553 Mon Sep 17 00:00:00 2001 From: Paul Eggleton Date: Thu, 22 Dec 2016 16:13:56 +1300 Subject: meta: use require instead of include when file should exist If the file is expected to exist, then we should always be using require so that if it doesn't we get an error rather than some other more obscure failure later on. (From OE-Core rev: 603ae6eb487489e65da69c68e532cb767ccc1fc2) Signed-off-by: Paul Eggleton Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- meta/recipes-support/boost/bjam-native_1.62.0.bb | 2 +- meta/recipes-support/boost/boost_1.62.0.bb | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'meta/recipes-support') diff --git a/meta/recipes-support/boost/bjam-native_1.62.0.bb b/meta/recipes-support/boost/bjam-native_1.62.0.bb index 32646d707b..46013f343b 100644 --- a/meta/recipes-support/boost/bjam-native_1.62.0.bb +++ b/meta/recipes-support/boost/bjam-native_1.62.0.bb @@ -1,4 +1,4 @@ -include boost-${PV}.inc +require boost-${PV}.inc SUMMARY = "Portable Boost.Jam build tool for boost" SECTION = "devel" diff --git a/meta/recipes-support/boost/boost_1.62.0.bb b/meta/recipes-support/boost/boost_1.62.0.bb index 120d12968b..cde03f2b8e 100644 --- a/meta/recipes-support/boost/boost_1.62.0.bb +++ b/meta/recipes-support/boost/boost_1.62.0.bb @@ -1,5 +1,5 @@ -include boost-${PV}.inc -include boost.inc +require boost-${PV}.inc +require boost.inc SRC_URI += "\ file://arm-intrinsics.patch \ -- cgit v1.2.3-54-g00ecf