From 7195fe81a0b4781e53e6264eda4f495690795839 Mon Sep 17 00:00:00 2001 From: rjones Date: Wed, 25 Mar 2009 10:05:02 +0000 Subject: [PATCH] Fix arch i686/i386. Version 1.3 for release. --- configure.ac | 2 +- febootstrap.sh | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 7c5de96..d7d3d3e 100644 --- a/configure.ac +++ b/configure.ac @@ -17,7 +17,7 @@ dnl Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. dnl dnl Written by Richard W.M. Jones -AC_INIT(febootstrap,1.2) +AC_INIT(febootstrap,1.3) AM_INIT_AUTOMAKE AC_CHECK_PROG(PERLDOC,[perldoc],[perldoc],[no]) 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) -- 1.8.3.1