diff options
author | ng0 <ng0@n0.is> | 2019-04-02 19:05:48 +0000 |
---|---|---|
committer | ng0 <ng0@n0.is> | 2019-04-02 19:05:48 +0000 |
commit | 5c7d3e6b335dfbb4f621e39174e5c854628ba780 (patch) | |
tree | 67f077d55f902ec3f63299de019475b3343527f1 /configure.ac | |
parent | 352f2f70902ae60204751e8c4ef0797aa57e92d7 (diff) |
fix accidental slipup w configure.ac
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 5bfb4ce72..96d7cbbc0 100644 --- a/configure.ac +++ b/configure.ac @@ -340,9 +340,9 @@ fi # FIXME: Something is wrong about this in the output of ./configure runs AC_MSG_CHECKING(wether to include generated texi2mdoc output in installation) AC_ARG_ENABLE([texi2mdoc-generation], - [AS_HELP_STRING([--disable-texi2mdoc-generation], [do not include generated texi2mdoc output in installation])], + [AS_HELP_STRING([--enable-texi2mdoc-generation], [include generated texi2mdoc output in installation])], [texi2mdoc_generation=${enableval}], - [texi2mdoc_generation=yes]) + [texi2mdoc_generation=no]) AC_MSG_RESULT($texi2mdoc_generation) if test "x$texi2mdoc_generation" = "xyes" then |