From: Martin Jansa Date: Sun, 3 Feb 2013 16:22:09 +0000 (+0100) Subject: nodejs: export DESTDIR to fix build with dash X-Git-Tag: rev_ivi_2015_02_04~3564 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6d49d25004d45b7cb047fea9e9f25f6277af6a3d;p=scm%2Fbb%2Ftizen-distro.git nodejs: export DESTDIR to fix build with dash * 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 (From meta-openembedded rev: 4128325a4c87bcde6ac6ffe5dbf5d6d057ee4804) Signed-off-by: Martin Jansa Signed-off-by: Patrick Ohly --- diff --git a/meta-openembedded/meta-oe/recipes-devtools/nodejs/nodejs_0.6.21.bb b/meta-openembedded/meta-oe/recipes-devtools/nodejs/nodejs_0.6.21.bb index 588a704..3d034f2 100644 --- a/meta-openembedded/meta-oe/recipes-devtools/nodejs/nodejs_0.6.21.bb +++ b/meta-openembedded/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 "