diff --git a/ninja b/ninja index 1a650b544..4b3f98702 100755 --- a/ninja +++ b/ninja @@ -22,14 +22,10 @@ case "$OS" in Linux) MACHINE=$(uname -m) case "$MACHINE" in - i?86|x86_64) - LONG_BIT=$(getconf LONG_BIT) - # We know we are on x86 but we need to use getconf to determine - # bittage of the userspace install (e.g. when running 32-bit userspace - # on x86_64 kernel) - exec "${THIS_DIR}/ninja-linux${LONG_BIT}" "$@";; + x86_64) + exec "${THIS_DIR}/ninja-linux64" "$@";; *) - echo Unknown architecture \($MACHINE\) -- unable to run ninja. + echo Unsupported architecture \($MACHINE\) -- unable to run ninja. print_help exit 1;; esac diff --git a/ninja-linux32 b/ninja-linux32 deleted file mode 100755 index 6f1273ea4..000000000 Binary files a/ninja-linux32 and /dev/null differ