Gentoo Archives: gentoo-commits

From: Mike Frysinger <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sandbox:master commit in: /
Date: Sun, 20 Dec 2015 08:41:25
Message-Id: 1450600319.48520a35697aa39bed046b9668a3e3e5f8a8ba93.vapier@gentoo
1 commit: 48520a35697aa39bed046b9668a3e3e5f8a8ba93
2 Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 20 08:31:59 2015 +0000
4 Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 20 08:31:59 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=48520a35
7
8 build: fix schizo match on x86 hosts
9
10 Forgot to include the trailing glob. Not a big deal as few people use
11 it with these targets.
12
13 Signed-off-by: Mike Frysinger <vapier <AT> gentoo.org>
14
15 configure.ac | 3 ++-
16 1 file changed, 2 insertions(+), 1 deletion(-)
17
18 diff --git a/configure.ac b/configure.ac
19 index fd783b7..b8430dd 100644
20 --- a/configure.ac
21 +++ b/configure.ac
22 @@ -75,7 +75,8 @@ AC_DEFUN([SB_CHECK_SCHIZO],[dnl
23 if test "x$enable_schizo" != "xno" ; then
24 enable_schizo=no
25 case $host in
26 - i686*linux|x86_64*linux*)
27 + i686*linux*|\
28 + x86_64*linux*)
29 SB_CHECK_SCHIZO([x86_64], [-m64])
30 SB_CHECK_SCHIZO([x86], [-m32])
31 SB_CHECK_SCHIZO([x32], [-mx32])