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 <paul.eggleton@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Paul Eggleton
2016-12-22 16:13:56 +13:00
committed by Richard Purdie
parent be3c48f607
commit 32da05fa8f
25 changed files with 27 additions and 26 deletions

View File

@@ -1,4 +1,4 @@
include boost-${PV}.inc
require boost-${PV}.inc
SUMMARY = "Portable Boost.Jam build tool for boost"
SECTION = "devel"

View File

@@ -1,5 +1,5 @@
include boost-${PV}.inc
include boost.inc
require boost-${PV}.inc
require boost.inc
SRC_URI += "\
file://arm-intrinsics.patch \