mirror of
https://git.yoctoproject.org/poky
synced 2026-04-27 03:32:12 +02:00
Add a patch to fix bjam-native compile error (due to mistyped variable name). Drop upstreamed patch. (From OE-Core rev: ba2d391d8268203895ab2f792f92b7fd92deeb45) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
20 lines
450 B
BlitzBasic
20 lines
450 B
BlitzBasic
require boost-${PV}.inc
|
|
|
|
SUMMARY = "Portable Boost.Jam build tool for boost"
|
|
SECTION = "devel"
|
|
|
|
inherit native
|
|
|
|
SRC_URI += "file://bjam-native-build-bjam.debug.patch \
|
|
file://0001-Fix-a-strange-assert-typo-how-was-this-released-with.patch"
|
|
|
|
do_compile() {
|
|
./bootstrap.sh --with-toolset=gcc
|
|
}
|
|
|
|
do_install() {
|
|
install -d ${D}${bindir}/
|
|
# install unstripped version for bjam
|
|
install -c -m 755 bjam.debug ${D}${bindir}/bjam
|
|
}
|