[systemd-devel] [PATCH 4/5] configure.ac: Allow for more than just i686 for ia32
Darren Hart
dvhart at linux.intel.com
Wed Aug 21 11:13:42 PDT 2013
Expand the ARCH_I686 to include i*86* (specifically to catch i586).
Rename ARCH_I686 to ARCH_IA32 as that is more accurately what we are
testing for.
Signed-off-by: Darren Hart <dvhart at linux.intel.com>
---
configure.ac | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure.ac b/configure.ac
index d8dca1e..68999c6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -49,13 +49,13 @@ AC_PATH_PROG([XSLTPROC], [xsltproc])
AC_PATH_PROG([QEMU_KVM], [qemu-kvm])
dnl Define ARCH_<NAME> conditionals
-SET_ARCH(I686, i686*)
+SET_ARCH(IA32, i*86*)
SET_ARCH(X86_64, x86_64*)
SET_ARCH(IA64, ia64*)
ARCH=`echo $host | sed "s/\(-\).*$//"`
-AM_COND_IF(ARCH_I686, [
+AM_COND_IF(ARCH_IA32, [
ARCH=ia32
MACHINE_TYPE_NAME=ia32])
--
1.8.3.1
More information about the systemd-devel
mailing list