summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZdenek Kabelac <zkabelac@redhat.com>2021-10-15 23:33:59 +0200
committerZdenek Kabelac <zkabelac@redhat.com>2021-10-15 23:35:05 +0200
commit8aefd97252ab5cde9811d93138239f3defeee73b (patch)
tree96b93332845aa789376ac7607b01bb196b14e11f
parentbf87b8354d07dbddc520e8b61543128e2b2f1924 (diff)
downloadlvm2-8aefd97252ab5cde9811d93138239f3defeee73b.tar.gz
configure: fix use of withval
Newly added option --with-default-use-devices-file needs to use withval.
-rwxr-xr-xconfigure3
-rw-r--r--configure.ac2
2 files changed, 2 insertions, 3 deletions
diff --git a/configure b/configure
index 642cb4f6b..5719be836 100755
--- a/configure
+++ b/configure
@@ -8467,11 +8467,10 @@ $as_echo_n "checking default for use_devicesfile... " >&6; }
# Check whether --with-default-use-devices-file was given.
if test "${with_default_use_devices_file+set}" = set; then :
- withval=$with_default_use_devices_file; DEFAULT_USE_DEVICES_FILE=$enableval
+ withval=$with_default_use_devices_file; DEFAULT_USE_DEVICES_FILE=$withval
else
DEFAULT_USE_DEVICES_FILE=0
fi
-
case "$DEFAULT_USE_DEVICES_FILE" in
0|1);;
*) as_fn_error $? "--with-default-use-devices-file parameter invalid" "$LINENO" 5;;
diff --git a/configure.ac b/configure.ac
index 0069e5d36..2f821edae 100644
--- a/configure.ac
+++ b/configure.ac
@@ -290,7 +290,7 @@ dnl -- Default settings for lvm.conf { devices/use_devicesfile }
AC_MSG_CHECKING(default for use_devicesfile)
AC_ARG_WITH(default-use-devices-file,
AS_HELP_STRING([--with-default-use-devices-file], [default for lvm.conf devices/use_devicesfile = [0]]),
- DEFAULT_USE_DEVICES_FILE=$enableval, DEFAULT_USE_DEVICES_FILE=0)
+ DEFAULT_USE_DEVICES_FILE=$withval, DEFAULT_USE_DEVICES_FILE=0)
case "$DEFAULT_USE_DEVICES_FILE" in
0|1);;
*) AC_MSG_ERROR([--with-default-use-devices-file parameter invalid]);;