aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2012-07-28 08:46:44 -0400
committerAnthony G. Basile <blueness@gentoo.org>2012-07-29 11:22:42 -0400
commitbbebb89c392739c5e195944a23ad5f8749fa4a63 (patch)
tree108cc41e2e678e33d288e6f0a2cd365dceb7cd9a
parentPrepare release 0.5.1 (diff)
downloadelfix-bbebb89c392739c5e195944a23ad5f8749fa4a63.tar.gz
elfix-bbebb89c392739c5e195944a23ad5f8749fa4a63.tar.bz2
elfix-bbebb89c392739c5e195944a23ad5f8749fa4a63.zip
configure.ac: remove unnecessary check for yasm
(cherry picked from commit aa85dba6d084cb0d28703a9e77766f9d7376958b)
-rw-r--r--configure.ac12
1 files changed, 2 insertions, 10 deletions
diff --git a/configure.ac b/configure.ac
index 9f32eb3..6ae009a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -14,17 +14,9 @@ AC_ARG_ENABLE(
[--enable-tests],
[perform tests]
),
- [
- AS_IF(
- [test "x$enable_tests" = "xyes"],
- [
- AC_CHECK_PROG([has_yasm],[yasm],["yes"],["no"])
- AS_IF([test "x$has_yasm" = "xno"],AC_MSG_ERROR(["Missing yasm assembler"]))
- ]
- )
- ]
+ [test "x$enable_tests" = "xyes"]
)
-AM_CONDITIONAL([TEST],[test "x$has_yasm" = "xyes"])
+AM_CONDITIONAL([TEST],[test "x$enable_tests" = "xyes"])
AC_ARG_ENABLE(
[xattr],