Skip to content
Snippets Groups Projects
Commit 46cffb3b authored by Bob Lantz's avatar Bob Lantz
Browse files

Fixed arch detection - should be i686 rather than just 686

parent 738ae1f3
No related branches found
No related tags found
No related merge requests found
......@@ -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"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment