Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/elfix:elfix-0.5.x commit in: /
Date: Sun, 29 Jul 2012 15:23:16
Message-Id: 1343575362.bbebb89c392739c5e195944a23ad5f8749fa4a63.blueness@gentoo
1 commit: bbebb89c392739c5e195944a23ad5f8749fa4a63
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 28 12:46:44 2012 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 29 15:22:42 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/elfix.git;a=commit;h=bbebb89c
7
8 configure.ac: remove unnecessary check for yasm
9 (cherry picked from commit aa85dba6d084cb0d28703a9e77766f9d7376958b)
10
11 ---
12 configure.ac | 12 ++----------
13 1 files changed, 2 insertions(+), 10 deletions(-)
14
15 diff --git a/configure.ac b/configure.ac
16 index 9f32eb3..6ae009a 100644
17 --- a/configure.ac
18 +++ b/configure.ac
19 @@ -14,17 +14,9 @@ AC_ARG_ENABLE(
20 [--enable-tests],
21 [perform tests]
22 ),
23 - [
24 - AS_IF(
25 - [test "x$enable_tests" = "xyes"],
26 - [
27 - AC_CHECK_PROG([has_yasm],[yasm],["yes"],["no"])
28 - AS_IF([test "x$has_yasm" = "xno"],AC_MSG_ERROR(["Missing yasm assembler"]))
29 - ]
30 - )
31 - ]
32 + [test "x$enable_tests" = "xyes"]
33 )
34 -AM_CONDITIONAL([TEST],[test "x$has_yasm" = "xyes"])
35 +AM_CONDITIONAL([TEST],[test "x$enable_tests" = "xyes"])
36
37 AC_ARG_ENABLE(
38 [xattr],