integrate-distro.sh: Now only tweaking uname if necessary (thus avoiding an endless loop)

Signed-off-by: Jan Lindemann <jan@jannet.de>
This commit is contained in:
Jan Lindemann 2013-04-07 21:49:44 +00:00 committed by Jan Lindemann
commit 11710168b6

View file

@ -1034,7 +1034,12 @@ init_root_password_file
case $arch in
i386|i586|i686)
l32=linux32;;
case `uname -m` in
i386|i586|i686);;
x86_64)
l32=linux32;;
esac
;;
x86_64)
;;
esac