Print '64-bit' on Windows and 'x86_64' on all other systems
This commit is contained in:
parent
1a303e916f
commit
716fba3c79
12
fetch
12
fetch
|
@ -373,6 +373,10 @@ esac
|
||||||
|
|
||||||
# Distro {{{
|
# Distro {{{
|
||||||
|
|
||||||
|
# Default bit style
|
||||||
|
x64="x86_64"
|
||||||
|
x32="x86"
|
||||||
|
|
||||||
case "$os" in
|
case "$os" in
|
||||||
"Linux" )
|
"Linux" )
|
||||||
if type -p lsb_release >/dev/null 2>&1; then
|
if type -p lsb_release >/dev/null 2>&1; then
|
||||||
|
@ -412,6 +416,10 @@ case "$os" in
|
||||||
distro=${distro//[[:space:]]/ }
|
distro=${distro//[[:space:]]/ }
|
||||||
distro=${distro// }
|
distro=${distro// }
|
||||||
distro=${distro/Microsoft }
|
distro=${distro/Microsoft }
|
||||||
|
|
||||||
|
# Change bits to xx-bit for Windows
|
||||||
|
x64="64-bit"
|
||||||
|
x32="32-bit"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
*)
|
*)
|
||||||
|
@ -424,8 +432,8 @@ getdistro () {
|
||||||
# Get architecture
|
# Get architecture
|
||||||
if [ "$os_arch" == "on" ]; then
|
if [ "$os_arch" == "on" ]; then
|
||||||
case "$(getconf LONG_BIT)" in
|
case "$(getconf LONG_BIT)" in
|
||||||
64) distro+=" x86_64" ;;
|
64) distro+=" $x64" ;;
|
||||||
32) distro+=" x86" ;;
|
32) distro+=" $x32" ;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
Reference in New Issue