From patchwork Sun Feb 3 16:23:49 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [meta-oe] nodejs: export DESTDIR to fix build with dash Date: Sun, 03 Feb 2013 16:23:49 -0000 From: Martin Jansa X-Patchwork-Id: 43867 Message-Id: <1359908629-28218-1-git-send-email-Martin.Jansa@gmail.com> To: openembedded-devel@lists.openembedded.org * when building on machine with /bin/sh -> /bin/dash DESTDIR is empty in install and it's trying to write to /usr/include and fails Signed-off-by: Martin Jansa --- meta-oe/recipes-devtools/nodejs/nodejs_0.6.21.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta-oe/recipes-devtools/nodejs/nodejs_0.6.21.bb b/meta-oe/recipes-devtools/nodejs/nodejs_0.6.21.bb index 588a704..3d034f2 100644 --- a/meta-oe/recipes-devtools/nodejs/nodejs_0.6.21.bb +++ b/meta-oe/recipes-devtools/nodejs/nodejs_0.6.21.bb @@ -54,7 +54,8 @@ do_compile () { } do_install () { - DESTDIR=${D} oe_runmake install + export DESTDIR=${D} + oe_runmake install } RDEPENDS_${PN} = "curl python-shell python-datetime python-subprocess python-crypt python-textutils python-netclient "