aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMickaël Tansorier <mickael.tansorier@cpexterne.org>2017-10-06 17:30:41 +0200
committerMickaël Tansorier <mickael.tansorier@cpexterne.org>2017-10-06 17:30:41 +0200
commitab8b62f1c1d25ca07349e5dd40f74f8c6cb6b1b8 (patch)
tree3db096e45b5d59620a1e2e922ac38ead88a2646b
parentconfigure.ac: bump to version 3.2.4 (diff)
downloadeudev-ab8b62f1c1d25ca07349e5dd40f74f8c6cb6b1b8.tar.gz
eudev-ab8b62f1c1d25ca07349e5dd40f74f8c6cb6b1b8.tar.bz2
eudev-ab8b62f1c1d25ca07349e5dd40f74f8c6cb6b1b8.zip
configure.ac: fix typo on blkid
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index bb778e8ec..1c54f5bf5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -208,7 +208,7 @@ AC_ARG_ENABLE(blkid, AS_HELP_STRING([--disable-blkid], [Disable optional blkid s
if test "x$enable_blkid" != "xno"; then
PKG_CHECK_MODULES([BLKID], [blkid >= 2.20],
[AC_DEFINE(HAVE_BLKID, 1, [Define if blkid is available]) have_blkid=yes], have_blkid=no)
- if test "x$have_blkid" = xno -a "x$enable_blkd" = xyes; then
+ if test "x$have_blkid" = xno -a "x$enable_blkid" = xyes; then
AC_MSG_ERROR([*** blkid support requested but not found])
fi
fi