Skip to content

Commit

Permalink
Fix Meson CPU detection for make.conf
Browse files Browse the repository at this point in the history
I used the CPU name rather than the family by mistake.

Signed-off-by: James Le Cuirot <[email protected]>
Signed-off-by: Sam James <[email protected]>
  • Loading branch information
chewi authored and thesamesam committed Aug 3, 2023
1 parent 8cc2348 commit c96f8a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cnf/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ if eprefix != ''
)
endif

arch = host_machine.cpu()
arch = host_machine.cpu_family()

arch = {
'aarch64' : 'arm64',
Expand Down

0 comments on commit c96f8a3

Please sign in to comment.