mirror of
https://git.yoctoproject.org/poky
synced 2026-07-16 15:57:04 +00:00
e7f0177ef3
This reverts commit a384248938.
This package update slipped in doing the maint process. Removing it.
(From OE-Core rev: fddd3ca8490adaceab6491632cf249c2320e4fda)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Armin Kuster <akuster@mvista.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
20 lines
368 B
BlitzBasic
20 lines
368 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 \
|
|
"
|
|
|
|
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
|
|
}
|