Revert 'uname --machine' to 'uname -m' (bug fix OSX)
Long option name '--machine' was introduced in commit fa3c2ca for
explicitness, however it is not supported by clang / OSX.
This commit is contained in:
parent
13796bfee2
commit
a01ee169cd
1 changed files with 1 additions and 1 deletions
|
|
@ -468,7 +468,7 @@ $(eval $(for$(system)))
|
||||||
|
|
||||||
|
|
||||||
# native architecture of the build machine
|
# native architecture of the build machine
|
||||||
build.arch := $(shell uname --machine)
|
build.arch := $(shell uname -m)
|
||||||
|
|
||||||
# Target architecture as reported by compiler. Give precedence to eventual
|
# Target architecture as reported by compiler. Give precedence to eventual
|
||||||
# user-defined compiler. The first field of <cpu>-<vendor>-<os> is extracted.
|
# user-defined compiler. The first field of <cpu>-<vendor>-<os> is extracted.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue