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:
katjav 2018-01-22 23:19:24 +01:00
parent 13796bfee2
commit a01ee169cd

View file

@ -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.