diff options
| author | Archana Polampalli <archana.polampalli@windriver.com> | 2023-02-08 13:11:57 +0000 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2023-02-08 08:51:44 -0800 |
| commit | 42c0f0120ad1caf25118d079314c988d4633a437 (patch) | |
| tree | 1c0481999913be8a82fc1006d6b0964474ed010e | |
| parent | 640c95a9c307d7e15fb8c3a679419141909b2cb6 (diff) | |
| download | meta-openembedded-42c0f0120ad1caf25118d079314c988d4633a437.tar.gz | |
Nodejs: fix buildpaths warning
Correct libdir used at configure time to avoid packaging warnings
WARNING: nodejs-18.12.1-r0 do_package_qa: QA Issue:
File /usr/bin/node in package nodejs contains reference to TMPDIR [buildpaths]
File /usr/bin/.debug/node in package nodejs-dbg contains reference to TMPDIR
File /usr/lib64/nodejs/ptest/.debug/cctest in package nodejs-dbg contains reference to TMPDIR [buildpaths]
File /usr/lib64/nodejs/ptest/cctest in package nodejs-ptest contains reference to TMPDIR [buildpaths]
File /usr/include/node/config.gypi in package nodejs-dev contains reference to TMPDIR [buildpaths]
Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
| -rw-r--r-- | meta-oe/recipes-devtools/nodejs/nodejs_18.12.1.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-devtools/nodejs/nodejs_18.12.1.bb b/meta-oe/recipes-devtools/nodejs/nodejs_18.12.1.bb index d934acf3da..02f1ac5d4a 100644 --- a/meta-oe/recipes-devtools/nodejs/nodejs_18.12.1.bb +++ b/meta-oe/recipes-devtools/nodejs/nodejs_18.12.1.bb | |||
| @@ -148,7 +148,7 @@ do_configure () { | |||
| 148 | --without-etw \ | 148 | --without-etw \ |
| 149 | --dest-cpu="${@map_nodejs_arch(d.getVar('TARGET_ARCH'), d)}" \ | 149 | --dest-cpu="${@map_nodejs_arch(d.getVar('TARGET_ARCH'), d)}" \ |
| 150 | --dest-os=linux \ | 150 | --dest-os=linux \ |
| 151 | --libdir=${D}${libdir} \ | 151 | --libdir=${libdir} \ |
| 152 | ${ARCHFLAGS} \ | 152 | ${ARCHFLAGS} \ |
| 153 | ${PACKAGECONFIG_CONFARGS} | 153 | ${PACKAGECONFIG_CONFARGS} |
| 154 | } | 154 | } |
