diff options
author | Richard Weinberger <richard@nod.at> | 2019-01-10 10:42:09 +0100 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2019-01-10 09:06:05 -0800 |
commit | 49008c55d467292f365ac72d6f69f85bd093445e (patch) | |
tree | 22a97d0a1c473dc8154b6a74f8371ae95cd99c1e /meta-multimedia | |
parent | 43e63981a1d5b5d546da32f298ac7eae69dd71c8 (diff) | |
download | meta-openembedded-49008c55d467292f365ac72d6f69f85bd093445e.tar.gz |
caps: Don't use ${PN}
Don't use ${PN} for the source dir, it will break multilib builds.
The correct variable is ${BPN}.
The bitbake defaults are:
BP = "${BPN}-${PV}"
S = "${WORKDIR}/${BP}"
Therefore we can remove this line.
Cc: Andreas Müller <schnitzeltony@googlemail.com>
Signed-off-by: Richard Weinberger <richard@nod.at>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-multimedia')
-rw-r--r-- | meta-multimedia/recipes-multimedia/caps/caps_0.9.24.bb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/meta-multimedia/recipes-multimedia/caps/caps_0.9.24.bb b/meta-multimedia/recipes-multimedia/caps/caps_0.9.24.bb index fe864c49c..0404bd515 100644 --- a/meta-multimedia/recipes-multimedia/caps/caps_0.9.24.bb +++ b/meta-multimedia/recipes-multimedia/caps/caps_0.9.24.bb | |||
@@ -3,7 +3,7 @@ HOMEPAGE = "http://quitte.de/dsp/caps.html" | |||
3 | LICENSE = "GPL-3" | 3 | LICENSE = "GPL-3" |
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" |
5 | 5 | ||
6 | SRC_URI = "http://quitte.de/dsp/${PN}_${PV}.tar.bz2 \ | 6 | SRC_URI = "http://quitte.de/dsp/${BPN}_${PV}.tar.bz2 \ |
7 | file://Avoid-ambiguity-in-div-invocation.patch \ | 7 | file://Avoid-ambiguity-in-div-invocation.patch \ |
8 | file://0001-basic.h-Use-c99-supported-stdint-types.patch \ | 8 | file://0001-basic.h-Use-c99-supported-stdint-types.patch \ |
9 | file://append_ldflags.patch \ | 9 | file://append_ldflags.patch \ |
@@ -13,8 +13,6 @@ SRC_URI = "http://quitte.de/dsp/${PN}_${PV}.tar.bz2 \ | |||
13 | SRC_URI[md5sum] = "c1d634038dcb54702306c0e30cb1c626" | 13 | SRC_URI[md5sum] = "c1d634038dcb54702306c0e30cb1c626" |
14 | SRC_URI[sha256sum] = "f746feba57af316b159f0169de5d78b4fd1064c2c0c8017cb5856b2f22e83f20" | 14 | SRC_URI[sha256sum] = "f746feba57af316b159f0169de5d78b4fd1064c2c0c8017cb5856b2f22e83f20" |
15 | 15 | ||
16 | S = "${WORKDIR}/${PN}-${PV}" | ||
17 | |||
18 | EXTRA_OEMAKE = " \ | 16 | EXTRA_OEMAKE = " \ |
19 | CC='${CXX}' \ | 17 | CC='${CXX}' \ |
20 | CFLAGS='${CFLAGS} -ffast-math -funroll-loops -fPIC -DPIC' \ | 18 | CFLAGS='${CFLAGS} -ffast-math -funroll-loops -fPIC -DPIC' \ |