Skip to content

Commit

Permalink
nodejs: ppc64le machine support
Browse files Browse the repository at this point in the history
Commit 836912a changed the logic in this recipe to stop looking for
"ppc64le". This caused the ppc64le systems used by me to stop working.
There wasn't much in the commit message on why this change occurred but
ppc64le is definitely still needed.

Signed-off-by: Andrew Geissler <[email protected]>
Signed-off-by: Khem Raj <[email protected]>
  • Loading branch information
geissonator authored and kraj committed Apr 2, 2021
1 parent 5f3159f commit 649fb54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meta-oe/recipes-devtools/nodejs/nodejs_12.21.0.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|powerpc64le)$', a): return 'ppc64'
elif re.match('(powerpc64|powerpc64le|ppc64le)$', a): return 'ppc64'
elif re.match('powerpc$', a): return 'ppc'
return a

Expand Down

0 comments on commit 649fb54

Please sign in to comment.