summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrank Meerkoetter <frank.meerkoetter@basyskom.com>2016-12-05 21:11:23 +0100
committerFrank Meerkoetter <frank.meerkoetter@basyskom.com>2016-12-08 08:01:11 +0000
commit6473d7afc408b8e3ca5448bcb25cb1395faa588e (patch)
tree2176155d1fe417b000488d06b355d34452b7f12d
parent2e508eda05995a29ae745e6f877735f434bcbcda (diff)
downloadmeta-boot2qt-6473d7afc408b8e3ca5448bcb25cb1395faa588e.tar.gz
Correctly pass DESTDIR
Passing DESTDIR does not work this way. The result was that the recipe tried to install into the host. Typically this ended the build as the user running it, isn't allowed to write to /. This patch correctly passes DESTDIR to the make file. Change-Id: I6f4a3cd42d2d0d3996333a56a707802bc25c8b4a Reviewed-by: Samuli Piippo <samuli.piippo@qt.io>
-rw-r--r--meta-ti-extras/recipes/bb-org-overlays/bb-org-overlays_git.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-ti-extras/recipes/bb-org-overlays/bb-org-overlays_git.bb b/meta-ti-extras/recipes/bb-org-overlays/bb-org-overlays_git.bb
index f6f41d8..34a85a3 100644
--- a/meta-ti-extras/recipes/bb-org-overlays/bb-org-overlays_git.bb
+++ b/meta-ti-extras/recipes/bb-org-overlays/bb-org-overlays_git.bb
@@ -47,7 +47,7 @@ S = "${WORKDIR}/git"
47export DTC = "dtc" 47export DTC = "dtc"
48 48
49do_install() { 49do_install() {
50 DESTDIR="${D}" oe_runmake install 50 oe_runmake install DESTDIR="${D}"
51} 51}
52 52
53FILES_${PN} += "/lib/firmware" 53FILES_${PN} += "/lib/firmware"