Commit 2295d6b1d8c57b119ff8621ca8f6d638db09df71

Luke Dashjr 2012-03-12T14:57:56

Bugfix: AC_ARG_WITH provides withval instead of enableval

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
diff --git a/configure.ac b/configure.ac
index f505383..d295d40 100644
--- a/configure.ac
+++ b/configure.ac
@@ -261,8 +261,8 @@ fi
 AM_CONDITIONAL([HAS_YASM], [test x$has_yasm = xtrue])
 
 if test "x$bitforce" != xno; then
-	AC_ARG_WITH([libudev], [AC_HELP_STRING([--with-libudev], [Autodetect FPGAs using libudev])],
-		[libudev=$enableval],
+	AC_ARG_WITH([libudev], [AC_HELP_STRING([--without-libudev], [Autodetect FPGAs using libudev (default enabled)])],
+		[libudev=$withval],
 		[libudev=auto]
 		)
 	if test "x$libudev" != "xno"; then