From: Patrice Dumas Date: Sat, 27 Jan 2024 11:55:17 +0000 (+0100) Subject: gendocs: fix --no-html X-Git-Tag: v1.0~487 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=a30915a4228753e2449676361a91a5f22b884409;p=gnulib.git gendocs: fix --no-html * build-aux/gendocs.sh: fix typo in variable name set by --no-html. --- diff --git a/ChangeLog b/ChangeLog index 65982d7177..da748f4f3d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2024-01-27 Patrice Dumas + + gendocs: fix --no-html + * build-aux/gendocs.sh: fix typo in variable name set by --no-html. + 2024-01-25 Bruno Haible execute tests: Avoid test failure on macOS 14. diff --git a/build-aux/gendocs.sh b/build-aux/gendocs.sh index b0433c798f..779b4840e5 100755 --- a/build-aux/gendocs.sh +++ b/build-aux/gendocs.sh @@ -167,7 +167,7 @@ while test $# -gt 0; do --html) shift; default_htmlarg=false; htmlarg=$1;; --info) shift; infoarg=$1;; --no-ascii) generate_ascii=false;; - --no-html) generate_ascii=false;; + --no-html) generate_html=false;; --no-info) generate_info=false;; --no-tex) generate_tex=false;; --source) shift; source_extra=$1;;