Skip to content
Snippets Groups Projects
Commit b92f7637 authored by Eelco Dolstra's avatar Eelco Dolstra
Browse files

* In the platform, canonicalise "amd64" to "x86_64". FreeBSD 8.2's

  uname reports amd64.
* Drop the FreeBSD version number, e.g. "i686-freebsd" instead of
  "i686-freebsd8.2".
parent 42164d6d
No related branches found
No related tags found
No related merge requests found
......@@ -17,6 +17,8 @@ AC_ARG_WITH(system, AC_HELP_STRING([--with-system=SYSTEM],
[case "$host_cpu" in
i*86)
machine_name="i686";;
amd64)
machine_name="x86_64";;
*)
machine_name="$host_cpu";;
esac
......@@ -25,6 +27,9 @@ AC_ARG_WITH(system, AC_HELP_STRING([--with-system=SYSTEM],
linux-gnu*)
# For backward compatibility, strip the `-gnu' part.
system="$machine_name-linux";;
freebsd*)
# Strip the version number (e.g. freebsd8.2).
system="$machine_name-freebsd";;
*)
# Strip the version number from names such as `gnu0.3',
# `darwin10.2.0', etc.
......
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