From 79ad101cc1bc8a6ed405182f934c21bcceb6960e Mon Sep 17 00:00:00 2001 From: Nick Briggs Date: Mon, 3 Aug 2020 19:05:41 -0700 Subject: [PATCH] Update machinetype to recognize x86_64 machines --- bin/machinetype | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/machinetype b/bin/machinetype index 2caa90d..4a69495 100755 --- a/bin/machinetype +++ b/bin/machinetype @@ -16,6 +16,7 @@ case "$os" in sparc-*) echo sparc ;; alpha-*) echo alpha ;; i*86-*-*) echo 386 ;; + x86_64-*) echo x86_64 ;; powerpc-*) echo ppc ;; esac