aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2015-12-20 03:31:59 -0500
committerMike Frysinger <vapier@gentoo.org>2015-12-20 03:31:59 -0500
commit48520a35697aa39bed046b9668a3e3e5f8a8ba93 (patch)
tree4aa448e047eb540a3ad23e68b873ef6ef8211526
parentlibsandbox: new s390/s390x ptrace port (diff)
downloadsandbox-48520a35697aa39bed046b9668a3e3e5f8a8ba93.tar.gz
sandbox-48520a35697aa39bed046b9668a3e3e5f8a8ba93.tar.bz2
sandbox-48520a35697aa39bed046b9668a3e3e5f8a8ba93.zip
build: fix schizo match on x86 hosts
Forgot to include the trailing glob. Not a big deal as few people use it with these targets. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
-rw-r--r--configure.ac3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index fd783b7..b8430dd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -75,7 +75,8 @@ AC_DEFUN([SB_CHECK_SCHIZO],[dnl
if test "x$enable_schizo" != "xno" ; then
enable_schizo=no
case $host in
- i686*linux|x86_64*linux*)
+ i686*linux*|\
+ x86_64*linux*)
SB_CHECK_SCHIZO([x86_64], [-m64])
SB_CHECK_SCHIZO([x86], [-m32])
SB_CHECK_SCHIZO([x32], [-mx32])