From 8657122d381db4c850eedd10bcf2e2516ec682ef Mon Sep 17 00:00:00 2001 From: "Jeremy C. Reed" Date: Tue, 15 Mar 2016 15:55:09 -0400 Subject: [PATCH] change [=PATH] to [=ARG] for two dlz configure switches help text this is for #41940 --with-dlz-filesystem and --with-dlz-stub don't use a path so update the --help text for them too trivial to add a CHANGES entry --- contrib/dlz/config.dlz.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/dlz/config.dlz.in b/contrib/dlz/config.dlz.in index 31969245ec..01f7788c64 100644 --- a/contrib/dlz/config.dlz.in +++ b/contrib/dlz/config.dlz.in @@ -336,7 +336,7 @@ esac AC_MSG_CHECKING(for file system DLZ driver) AC_ARG_WITH(dlz_filesystem, -[ --with-dlz-filesystem[=PATH] Build with filesystem DLZ driver [yes|no]. +[ --with-dlz-filesystem[=ARG] Build with filesystem DLZ driver [yes|no]. (Required to use file system driver with DLZ)], use_dlz_filesystem="$withval", use_dlz_filesystem="no") @@ -461,7 +461,7 @@ esac AC_MSG_CHECKING(for stub DLZ driver) AC_ARG_WITH(dlz_stub, -[ --with-dlz-stub[=PATH] Build with stub DLZ driver [yes|no]. +[ --with-dlz-stub[=ARG] Build with stub DLZ driver [yes|no]. (Required to use stub driver with DLZ)], use_dlz_stub="$withval", use_dlz_stub="no")