diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2013-02-03 17:22:09 +0100 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2013-02-05 11:05:51 +0100 |
commit | 4128325a4c87bcde6ac6ffe5dbf5d6d057ee4804 (patch) | |
tree | 581362e41e63130c2f1ffdeaea0cb8ab1913a7a7 /meta-oe/recipes-devtools | |
parent | 09c91dd7edf704932d4a85e86cc2e861cfe3a0b8 (diff) | |
download | meta-openembedded-4128325a4c87bcde6ac6ffe5dbf5d6d057ee4804.tar.gz |
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
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-devtools')
-rw-r--r-- | meta-oe/recipes-devtools/nodejs/nodejs_0.6.21.bb | 3 |
1 files changed, 2 insertions, 1 deletions
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 588a704ce..3d034f2fc 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 () { | |||
54 | } | 54 | } |
55 | 55 | ||
56 | do_install () { | 56 | do_install () { |
57 | DESTDIR=${D} oe_runmake install | 57 | export DESTDIR=${D} |
58 | oe_runmake install | ||
58 | } | 59 | } |
59 | 60 | ||
60 | RDEPENDS_${PN} = "curl python-shell python-datetime python-subprocess python-crypt python-textutils python-netclient " | 61 | RDEPENDS_${PN} = "curl python-shell python-datetime python-subprocess python-crypt python-textutils python-netclient " |