diff options
author | 2016-06-16 12:52:15 +0100 | |
---|---|---|
committer | 2016-06-16 12:55:57 +0100 | |
commit | 505f490caf66deeb8ae4e8038a2546a8e0c7aca4 (patch) | |
tree | b16bb738a3b8c05fea4aacfde5ddc75949c4adcd /recipes-support/qrtr/qrtr_git.bb | |
parent | d073966db7467a22dbf0344670cdfe80a11c9707 (diff) | |
download | meta-qcom-505f490caf66deeb8ae4e8038a2546a8e0c7aca4.tar.gz meta-qcom-505f490caf66deeb8ae4e8038a2546a8e0c7aca4.tar.bz2 meta-qcom-505f490caf66deeb8ae4e8038a2546a8e0c7aca4.zip |
qrtr: ensure prefix variable is set properly
prefix variable is set in makefile, but also in the environment by OE. Until
krogoth make was always called with -e, so the variable was set based on the
environment. However since OE core commit
aeb653861a0ec39ea7a014c0622980edcbf653fa, -e has been removed, so we need to set
prefix in the recipe to override the value from the Makefile.
It is not doing anything harmful on jethro, so let's apply this change on all
branches.
Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
Diffstat (limited to 'recipes-support/qrtr/qrtr_git.bb')
-rw-r--r-- | recipes-support/qrtr/qrtr_git.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-support/qrtr/qrtr_git.bb b/recipes-support/qrtr/qrtr_git.bb index 74ccb79..d640cef 100644 --- a/recipes-support/qrtr/qrtr_git.bb +++ b/recipes-support/qrtr/qrtr_git.bb @@ -16,7 +16,7 @@ PV = "0.0+${SRCPV}" S = "${WORKDIR}/git" do_install () { - oe_runmake install DESTDIR=${D} + oe_runmake install DESTDIR=${D} prefix=${prefix} sed -i -e s:/usr/bin:${bindir}:g ${WORKDIR}/qrtr.service install -d ${D}${systemd_unitdir}/system/ |