diff options
author | Ronan Le Martret <ronan.lemartret@iot.bzh> | 2017-05-03 11:04:40 +0200 |
---|---|---|
committer | Ronan Le Martret <ronan.lemartret@iot.bzh> | 2017-05-16 15:18:14 +0200 |
commit | 536e71760745d77f629cd061c0c75681e4de1d2e (patch) | |
tree | c0de4a11368b468333a75979d14c2ed6d58a6af6 /meta-rcar-gen3/recipes-multimedia/mmngr-module/mmngrbuf-user-module.bb | |
parent | 753029eb30a27058a981bbd2f0f9137b501c887e (diff) |
[COMMUNITY] BSP's should not ship files in /usr/local/
* replace /usr/local with path /usr/share/renesas using:
RENESAS_DATADIR = "/usr"
- meta-rcar-gen3/include/rcar-gen3-path-common.inc
Bug-AGL: SPEC-533
Change-Id: I865ea809c3c59ba136027fc8b99628df20c16275
Signed-off-by: Ronan Le Martret <ronan.lemartret@iot.bzh>
Diffstat (limited to 'meta-rcar-gen3/recipes-multimedia/mmngr-module/mmngrbuf-user-module.bb')
-rw-r--r-- | meta-rcar-gen3/recipes-multimedia/mmngr-module/mmngrbuf-user-module.bb | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/meta-rcar-gen3/recipes-multimedia/mmngr-module/mmngrbuf-user-module.bb b/meta-rcar-gen3/recipes-multimedia/mmngr-module/mmngrbuf-user-module.bb index 916d567..690169f 100644 --- a/meta-rcar-gen3/recipes-multimedia/mmngr-module/mmngrbuf-user-module.bb +++ b/meta-rcar-gen3/recipes-multimedia/mmngr-module/mmngrbuf-user-module.bb @@ -1,5 +1,6 @@ DESCRIPTION = "Memory Manager Buffer User module for Renesas R-Car Gen3" require mmngr_lib.inc +require include/rcar-gen3-path-common.inc DEPENDS = "kernel-module-mmngrbuf" PN = "mmngrbuf-user-module" @@ -11,13 +12,14 @@ EXTRA_OECONF = "${@bb.utils.contains("DISTRO_FEATURES", "mm-test", \ " --enable-mmngrbuf-test", "", d)}" exec_prefix = "/usr" -bindir = "/usr/local/bin" -includedir = "/usr/local/include" +bindir = "${RENESAS_DATADIR}/bin" +includedir = "${RENESAS_DATADIR}/include" +CFLAGS += " -I${STAGING_DIR_HOST}${RENESAS_DATADIR}/include" do_install_append() { - if [ -f ${D}/usr/local/bin/mmbuftp ]; then + if [ -f ${D}${RENESAS_DATADIR}/bin/mmbuftp ]; then if [ X${WS} = "X32" ]; then - mv ${D}/usr/local/bin/mmbuftp ${D}/usr/local/bin/mmbuftp${WS} + mv ${D}${RENESAS_DATADIR}/bin/mmbuftp ${D}${RENESAS_DATADIR}/bin/mmbuftp${WS} fi fi } |