summaryrefslogtreecommitdiffstats
path: root/febootstrap.sh
diff options
context:
space:
mode:
authorrjones <rjones>2009-03-25 10:05:02 +0000
committerrjones <rjones>2009-03-25 10:05:02 +0000
commit7195fe81a0b4781e53e6264eda4f495690795839 (patch)
treec5bff973325d57f240b439a84104d6e34a641b24 /febootstrap.sh
parentd0b4f28864fe08a769c46beb30bc6dc702ce5420 (diff)
downloadfebootstrap-7195fe81a0b4781e53e6264eda4f495690795839.tar.gz
febootstrap-7195fe81a0b4781e53e6264eda4f495690795839.tar.xz
febootstrap-7195fe81a0b4781e53e6264eda4f495690795839.zip
Fix arch i686/i386. Version 1.3 for release.
Diffstat (limited to 'febootstrap.sh')
-rwxr-xr-xfebootstrap.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/febootstrap.sh b/febootstrap.sh
index c32bc7a..5900499 100755
--- a/febootstrap.sh
+++ b/febootstrap.sh
@@ -75,6 +75,9 @@ mirror="$3"
# Architecture is currently always the same as the current arch. We
# cannot do --foreign builds. See discussion in the manpage.
arch=$(arch)
+case $arch in
+ i?86) arch=i386 ;;
+esac
# Create a temporary directory, make sure it gets cleaned up at the end.
tmpdir=$(mktemp -d)