diff options
author | Ian Stakenvicius <axs@gentoo.org> | 2013-01-29 09:06:05 -0500 |
---|---|---|
committer | Ian Stakenvicius <axs@gentoo.org> | 2013-01-29 09:10:41 -0500 |
commit | c661732bc283e7b6dfc94ab907bf899eeabeedf2 (patch) | |
tree | 396737d239d4ec8272586f7c77cb5ea550e85499 | |
parent | a9ef3ca7642ae67fc6859d2b5861f8b0f0ab3a68 (diff) |
Fix AM_CONDITIONAL for HAVE_BLKID
Corrects error caused in commit a9ef3ca7642ae67fc6859d2b5861f8b0f0ab3a68
Signed-off-by: Ian Stakenvicius <axs@gentoo.org>
Signed-off-by: Matthew Thode <prometheanfire@gentoo.org>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 2f83e0538f..ecd8f50c03 100644 --- a/configure.ac +++ b/configure.ac @@ -168,7 +168,7 @@ if test "x$enable_blkid" != "xno"; then AC_MSG_ERROR([*** blkid support requested but not found]) fi fi -AM_CONDITIONAL(HAVE_SELINUX, [test "x$have_blkid" = "xyes"]) +AM_CONDITIONAL(HAVE_BLKID, [test "x$have_blkid" = "xyes"]) # ------------------------------------------------------------------------------ have_selinux=no |