From: Denys Dmytriyenko <[email protected]> Replace ${S}ource with ${B}uild directory when installing the binary. Normally B == S when the build output is in the same directory where sources are, but it's better to use B for when build output is in a different location.
Signed-off-by: Denys Dmytriyenko <[email protected]> Acked-by: Chase Maupin <[email protected]> --- v2 - typo in the description fixed meta-arago-extras/recipes-core/matrix/matrix-gui-browser_2.0.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-arago-extras/recipes-core/matrix/matrix-gui-browser_2.0.bb b/meta-arago-extras/recipes-core/matrix/matrix-gui-browser_2.0.bb index ecb97c2..0e508a0 100644 --- a/meta-arago-extras/recipes-core/matrix/matrix-gui-browser_2.0.bb +++ b/meta-arago-extras/recipes-core/matrix/matrix-gui-browser_2.0.bb @@ -7,7 +7,7 @@ SECTION = "multimedia" # Make sure that QT font libraries have been installed RDEPENDS_${PN} += "qt4-embedded-fonts" -PR = "r1" +PR = "r2" SRCREV = "db2e6b10e5a14358b6120a4a28de2f9d591bc55c" BRANCH ?= "master" @@ -20,5 +20,5 @@ inherit qt4e do_install() { install -d ${D}/${bindir} - install -m 0755 ${S}/matrix_browser ${D}/${bindir} + install -m 0755 ${B}/matrix_browser ${D}/${bindir} } -- 1.8.3.2 _______________________________________________ meta-arago mailing list [email protected] http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
