diff options
| author | nomnombtc <[email protected]> | 2016-08-28 02:46:36 +0200 |
|---|---|---|
| committer | nomnombtc <[email protected]> | 2016-08-28 02:46:36 +0200 |
| commit | ae6e754928b85642b7024995f1771776c064a341 (patch) | |
| tree | 39a14fd7ccae988d56d5300f18714e36a18aea2c | |
| parent | add conditional for --enable-man, default is yes (diff) | |
| download | discoin-ae6e754928b85642b7024995f1771776c064a341.tar.xz discoin-ae6e754928b85642b7024995f1771776c064a341.zip | |
change help string --enable-man to --disable-man
| -rw-r--r-- | configure.ac | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 4eadd58e7..7ca254aaa 100644 --- a/configure.ac +++ b/configure.ac @@ -167,10 +167,9 @@ AC_ARG_ENABLE([zmq], AC_ARG_WITH([protoc-bindir],[AS_HELP_STRING([--with-protoc-bindir=BIN_DIR],[specify protoc bin path])], [protoc_bin_path=$withval], []) -# Enable manpages AC_ARG_ENABLE(man, - [AS_HELP_STRING([--enable-man], - [install man pages [default=yes]])],, + [AS_HELP_STRING([--disable-man], + [do not install man pages (default is to install)])],, enable_man=yes) AM_CONDITIONAL(ENABLE_MAN, test "$enable_man" != no) |