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:30
Message-Id: 1450570350.20d27a2064a5ea30cc8a2e8d91e7b64c15a982b3.vapier@gentoo
1 commit: 20d27a2064a5ea30cc8a2e8d91e7b64c15a982b3
2 Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 20 00:12:30 2015 +0000
4 Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 20 00:12:30 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=20d27a20
7
8 build: fix SB_SCHIZO automake conditional
9
10 The rework in commit 46fe624223cfe62fb6c2fbb609be42f2f1d1734b broke the
11 set up of the SB_SCHIZO automake conditional for non-schizo builds as it
12 was not updated to the new variable. This would cause the syscall table
13 to always be empty and thus the ptrace code would never match.
14
15 Signed-off-by: Mike Frysinger <vapier <AT> gentoo.org>
16
17 configure.ac | 2 +-
18 1 file changed, 1 insertion(+), 1 deletion(-)
19
20 diff --git a/configure.ac b/configure.ac
21 index 25711cc..64089d7 100644
22 --- a/configure.ac
23 +++ b/configure.ac
24 @@ -88,7 +88,7 @@ if test "x$enable_schizo" != "xno" ; then
25 fi
26 AC_SUBST(SB_SCHIZO_SETTINGS)
27 AC_SUBST(SB_SCHIZO_HEADERS)
28 -AM_CONDITIONAL([SB_SCHIZO], test "$SB_SCHIZO_SETTINGS" != "no")
29 +AM_CONDITIONAL([SB_SCHIZO], [test "x$enable_schizo" != "xno"])
30
31 dnl this test fills up the stack and then triggers a segfault ...
32 dnl but it's hard to wrap things without a stack, so let's ignore