diff options
author | 2012-07-28 08:46:44 -0400 | |
---|---|---|
committer | 2012-07-28 08:46:44 -0400 | |
commit | aa85dba6d084cb0d28703a9e77766f9d7376958b (patch) | |
tree | 989d045715a207924236d62df70c494846036839 /configure.ac | |
parent | ChangeLog: updated (diff) | |
download | elfix-aa85dba6d084cb0d28703a9e77766f9d7376958b.tar.gz elfix-aa85dba6d084cb0d28703a9e77766f9d7376958b.tar.bz2 elfix-aa85dba6d084cb0d28703a9e77766f9d7376958b.zip |
configure.ac: remove unnecessary check for yasm
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/configure.ac b/configure.ac index f97c3d7..b4f9c0d 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], |