Skip to content
Snippets Groups Projects
Commit e6f0154b authored by sbbs's avatar sbbs
Browse files

Fix problem reported by Ree: convert 'x86_64' machine type to 'x64'.

parent 2dc1210b
No related branches found
No related tags found
No related merge requests found
......@@ -71,6 +71,9 @@ os := $(shell echo $(os) | tr '[A-Z]' '[a-z]' | tr ' ' '_')
machine := $(shell if uname -m | egrep -v "(i[3456789]|x)86" > /dev/null; then uname -m | tr "[A-Z]" "[a-z]" | tr " " "_" ; fi)
machine := $(shell if uname -m | egrep "64" > /dev/null; then uname -m | tr "[A-Z]" "[a-z]" | tr " " "_" ; else echo $(machine) ; fi)
ifeq ($(machine),x86_64)
machine := x64
endif
ifeq ($(machine),)
machine := $(os)
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment