diff options
-rwxr-xr-x | functions/defaults.sh | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/functions/defaults.sh b/functions/defaults.sh index 791cf3c95..ba3d944b2 100755 --- a/functions/defaults.sh +++ b/functions/defaults.sh @@ -237,8 +237,18 @@ Set_defaults () then LH_ARCHITECTURE="$(dpkg --print-architecture)" else - Echo_warning "Can't process file /usr/bin/dpkg, setting architecture to i386" - LH_ARCHITECTURE="i386" + case "$(uname -m)" in + sparc|powerpc) + LH_ARCHITECTURE="$(uname -m)" + ;; + x86_64) + LH_ARCHITECTURE="amd64" + ;; + *) + Echo_warning "Can't determine architecture, assuming i386" + LH_ARCHITECTURE="i386" + ;; + esac fi fi |