]> xenbits.xensource.com Git - xen.git/commitdiff
autoconf: revert 25178:181478052ea2
authorIan Campbell <ian.campbell@citrix.com>
Tue, 24 Jul 2012 08:35:44 +0000 (09:35 +0100)
committerIan Campbell <ian.campbell@citrix.com>
Tue, 24 Jul 2012 08:35:44 +0000 (09:35 +0100)
This change only removed the variables used to supply the path to the tool but
didn't remove the checks. Will be fixed properly in a subsequent patch.

Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Committed-by: Ian Campbell <ian.campbell@citrix.com>
tools/configure
tools/configure.ac

index 2ac7e5cf76f9017e9b45f5591014857f0d4dae03..a96d77247300707e9ff6f1385ba328cb2d28e12e 100755 (executable)
@@ -2622,15 +2622,10 @@ LDFLAGS="$PREPEND_LDFLAGS $LDFLAGS $APPEND_LDFLAGS"
 
 
 
-case "$host_cpu" in
-i[3456]86|x86_64)
 
 
 
 
-    ;;
-esac
-
 # Checks for programs.
 ac_ext=c
 ac_cpp='$CPP $CPPFLAGS'
index d3e0c1458e41b2b277ca69f88801efb92bc1b203..e37d93ad3fb577860211fd279ef0eff865b757c1 100644 (file)
@@ -67,16 +67,10 @@ AC_ARG_VAR([CURL], [Path to curl-config tool])
 AC_ARG_VAR([XML], [Path to xml2-config tool])
 AC_ARG_VAR([BASH], [Path to bash shell])
 AC_ARG_VAR([XGETTEXT], [Path to xgetttext tool])
-
-dnl as86, ld86, bcc and iasl are only present in x86* systems
-case "$host_cpu" in
-i[[3456]]86|x86_64)
-    AC_ARG_VAR([AS86], [Path to as86 tool])
-    AC_ARG_VAR([LD86], [Path to ld86 tool])
-    AC_ARG_VAR([BCC], [Path to bcc tool])
-    AC_ARG_VAR([IASL], [Path to iasl tool])
-    ;;
-esac
+AC_ARG_VAR([AS86], [Path to as86 tool])
+AC_ARG_VAR([LD86], [Path to ld86 tool])
+AC_ARG_VAR([BCC], [Path to bcc tool])
+AC_ARG_VAR([IASL], [Path to iasl tool])
 
 # Checks for programs.
 AC_PROG_CC