diff options
author | Burt P <pburt0@gmail.com> | 2017-07-09 12:33:07 -0500 |
---|---|---|
committer | Leandro Pereira <leandro@hardinfo.org> | 2017-07-12 19:38:41 -0700 |
commit | 81ceecf398a77e8bc4b64682fee7c6b97d6892d3 (patch) | |
tree | 76fe866ecfd700f656fbf282460fcf932fda435b | |
parent | 8c479234ecbd7385a67e425f4490af2855732c46 (diff) |
Handle x86_64 the same way as arm64
Removes some symlinks x86_64 -> x86.
Signed-off-by: Burt P <pburt0@gmail.com>
-rw-r--r-- | CMakeLists.txt | 2 | ||||
l--------- | includes/x86_64 | 1 | ||||
l--------- | modules/devices/x86_64 | 1 |
3 files changed, 1 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index e409ed28..e3366bdd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,7 +20,7 @@ endif() if(${CMAKE_HOST_SYSTEM_PROCESSOR} MATCHES "i[3-6]86") set(HARDINFO_ARCH "x86") elseif(${CMAKE_HOST_SYSTEM_PROCESSOR} MATCHES "x86_64") - set(HARDINFO_ARCH "x86_64") + set(HARDINFO_ARCH "x86") elseif(${CMAKE_HOST_SYSTEM_PROCESSOR} MATCHES "(ppc|ppc32|ppc64|ppc64le)") set(HARDINFO_ARCH "ppc") elseif(${CMAKE_HOST_SYSTEM_PROCESSOR} MATCHES "mips") diff --git a/includes/x86_64 b/includes/x86_64 deleted file mode 120000 index de1ff735..00000000 --- a/includes/x86_64 +++ /dev/null @@ -1 +0,0 @@ -./x86
\ No newline at end of file diff --git a/modules/devices/x86_64 b/modules/devices/x86_64 deleted file mode 120000 index de1ff735..00000000 --- a/modules/devices/x86_64 +++ /dev/null @@ -1 +0,0 @@ -./x86
\ No newline at end of file |