Fixed arch detection - should be i686 rather than just 686

This commit is contained in:
Bob Lantz
2012-02-13 11:10:11 -08:00
parent 738ae1f3fa
commit 46cffb3bcf
+1 -1
View File
@@ -19,7 +19,7 @@ RELEASE=Unknown
CODENAME=Unknown
ARCH=`uname -m`
if [ "$ARCH" = "x86_64" ]; then ARCH="amd64"; fi
if [ "$ARCH" = "686" ]; then ARCH="i386"; fi
if [ "$ARCH" = "i686" ]; then ARCH="i386"; fi
test -e /etc/debian_version && DIST="Debian"
grep Ubuntu /etc/lsb-release &> /dev/null && DIST="Ubuntu"