mirror of
https://git.yoctoproject.org/meta-arm
synced 2026-05-07 04:58:57 +00:00
arm/opencsd: upgrade to 1.14.4
Notable changes include resolving a build race. Clean up the recipe so that arguments are not passed twice in do_compile(), and always pass the install path arguments to clean up the tasks. Signed-off-by: Ross Burton <ross.burton@arm.com> Change-Id: I7e32a40092403fd0c0c53d157ae4581f7903356c Signed-off-by: Jon Mason <jon.mason@arm.com>
This commit is contained in:
+8
-9
@@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/Linaro/OpenCSD"
|
|||||||
LICENSE = "BSD-3-Clause"
|
LICENSE = "BSD-3-Clause"
|
||||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=ad8cb685eb324d2fa2530b985a43f3e5"
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=ad8cb685eb324d2fa2530b985a43f3e5"
|
||||||
|
|
||||||
SRC_URI = "git://github.com/Linaro/OpenCSD;protocol=https;branch=master"
|
SRC_URI = "git://github.com/Linaro/OpenCSD;protocol=https"
|
||||||
SRCREV = "957d18219d162f52ebe2426f32a4263ec10f357d"
|
SRCREV = "f4344d1b7d5eb191b6af3d64aa253407a2608e15"
|
||||||
|
|
||||||
S = "${WORKDIR}/git"
|
S = "${WORKDIR}/git"
|
||||||
|
|
||||||
@@ -18,19 +18,18 @@ EXTRA_OEMAKE = "ARCH='${TARGET_ARCH}' \
|
|||||||
LINKER='${CXX}' \
|
LINKER='${CXX}' \
|
||||||
LINUX64=1 \
|
LINUX64=1 \
|
||||||
DEBUG=1 \
|
DEBUG=1 \
|
||||||
|
PREFIX=${D}/usr \
|
||||||
|
INSTALL_BIN_DIR=${D}/${bindir} \
|
||||||
|
INSTALL_INCLUDE_DIR=${D}/${includedir} \
|
||||||
|
INSTALL_LIB_DIR=${D}/${libdir} \
|
||||||
"
|
"
|
||||||
|
|
||||||
do_compile() {
|
do_compile() {
|
||||||
oe_runmake -C ${S}/decoder/build/linux ${EXTRA_OEMAKE}
|
oe_runmake -C ${S}/decoder/build/linux
|
||||||
}
|
}
|
||||||
|
|
||||||
do_install() {
|
do_install() {
|
||||||
oe_runmake \
|
oe_runmake -C ${S}/decoder/build/linux install
|
||||||
PREFIX=${D}/usr \
|
|
||||||
INSTALL_BIN_DIR=${D}/${bindir} \
|
|
||||||
INSTALL_INCLUDE_DIR=${D}/${includedir} \
|
|
||||||
INSTALL_LIB_DIR=${D}/${libdir} \
|
|
||||||
-C ${S}/decoder/build/linux install
|
|
||||||
}
|
}
|
||||||
|
|
||||||
BBCLASSEXTEND = "native"
|
BBCLASSEXTEND = "native"
|
||||||
Reference in New Issue
Block a user