Skip to content

Commit 836912a

Browse files
committed
nodejs: Set correct nodejs arch for ppc64le
Signed-off-by: Khem Raj <[email protected]>
1 parent e27064b commit 836912a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

meta-oe/recipes-devtools/nodejs/nodejs_12.20.2.bb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def map_nodejs_arch(a, d):
3939
if re.match('i.86$', a): return 'ia32'
4040
elif re.match('x86_64$', a): return 'x64'
4141
elif re.match('aarch64$', a): return 'arm64'
42-
elif re.match('(powerpc64|ppc64le)$', a): return 'ppc64'
42+
elif re.match('(powerpc64|powerpc64le)$', a): return 'ppc64'
4343
elif re.match('powerpc$', a): return 'ppc'
4444
return a
4545

0 commit comments

Comments
 (0)