Skip to content

Commit

Permalink
configure.ac: fix --disable-manpages
Browse files Browse the repository at this point in the history
$enable_manpages should be used instead of $enablemanpages

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
  • Loading branch information
ffontaine committed Oct 6, 2019
1 parent d2480de commit fcfe31f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -338,7 +338,7 @@ fi

AC_ARG_ENABLE([manpages],
AS_HELP_STRING([--disable-manpages], [Do not install man pages]))
AM_CONDITIONAL(MANPAGES, test "x$enablemanpages" != "xno")
AM_CONDITIONAL(MANPAGES, test "x$enable_manpages" != "xno")
AS_IF([test "x$enable_manpages" != "xno"], [
AC_SUBST([MAN_CONFIG_FILES],["\
man/nbd-client.8.sh \
Expand Down

0 comments on commit fcfe31f

Please sign in to comment.