diff options
Diffstat (limited to 'meta/classes/npm.bbclass')
| -rw-r--r-- | meta/classes/npm.bbclass | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meta/classes/npm.bbclass b/meta/classes/npm.bbclass index b5db99d2b9..33ff5e3f45 100644 --- a/meta/classes/npm.bbclass +++ b/meta/classes/npm.bbclass | |||
| @@ -1,6 +1,8 @@ | |||
| 1 | DEPENDS_prepend = "nodejs-native " | 1 | DEPENDS_prepend = "nodejs-native " |
| 2 | S = "${WORKDIR}/npmpkg" | 2 | S = "${WORKDIR}/npmpkg" |
| 3 | 3 | ||
| 4 | NPM_INSTALLDIR = "${D}${libdir}/node_modules/${PN}" | ||
| 5 | |||
| 4 | npm_do_compile() { | 6 | npm_do_compile() { |
| 5 | # changing the home directory to the working directory, the .npmrc will | 7 | # changing the home directory to the working directory, the .npmrc will |
| 6 | # be created in this directory | 8 | # be created in this directory |
| @@ -14,8 +16,8 @@ npm_do_compile() { | |||
| 14 | } | 16 | } |
| 15 | 17 | ||
| 16 | npm_do_install() { | 18 | npm_do_install() { |
| 17 | mkdir -p ${D}${libdir}/node_modules/${PN}/ | 19 | mkdir -p ${NPM_INSTALLDIR}/ |
| 18 | cp -a ${S}/* ${D}${libdir}/node_modules/${PN}/ --no-preserve=ownership | 20 | cp -a ${S}/* ${NPM_INSTALLDIR}/ --no-preserve=ownership |
| 19 | } | 21 | } |
| 20 | 22 | ||
| 21 | python populate_packages_prepend () { | 23 | python populate_packages_prepend () { |
