Skip to content

Commit

Permalink
nodejs: Set correct nodejs arch for ppc64le
Browse files Browse the repository at this point in the history
Signed-off-by: Khem Raj <[email protected]>
  • Loading branch information
kraj committed Mar 13, 2021
1 parent e27064b commit 836912a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meta-oe/recipes-devtools/nodejs/nodejs_12.20.2.bb
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def map_nodejs_arch(a, d):
if re.match('i.86$', a): return 'ia32'
elif re.match('x86_64$', a): return 'x64'
elif re.match('aarch64$', a): return 'arm64'
elif re.match('(powerpc64|ppc64le)$', a): return 'ppc64'
elif re.match('(powerpc64|powerpc64le)$', a): return 'ppc64'
elif re.match('powerpc$', a): return 'ppc'
return a

Expand Down

0 comments on commit 836912a

Please sign in to comment.