From: Ondřej Surý Date: Mon, 22 Jun 2020 10:41:01 +0000 (+0200) Subject: Remove // not configured when generating doc/misc/options X-Git-Tag: v9.17.3~46^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b82ff5b738bfd2829c16a2d8ad086c86f8bd2beb;p=thirdparty%2Fbind9.git Remove // not configured when generating doc/misc/options The doc/misc/options is used to generate a file describing all configuration options. Currently, the file contents could differ based on ./configure option which is kind of suboptimal. We already removed the "// not configured" from the options.active, and this time we remove generation of the string altogether. --- diff --git a/doc/misc/Makefile.am b/doc/misc/Makefile.am index 26a3980b586..04790912cb6 100644 --- a/doc/misc/Makefile.am +++ b/doc/misc/Makefile.am @@ -62,7 +62,7 @@ EXTRA_DIST = \ MAINTAINERCLEANFILES = $(BUILT_SOURCES) options: cfg_test - $(AM_V_CFG_TEST)$(builddir)/cfg_test --named --grammar | $(PERL) $(srcdir)/sort-options.pl | $(PERL) $(srcdir)/format-options.pl > $@ + $(AM_V_CFG_TEST)$(builddir)/cfg_test --named --grammar | $(PERL) $(srcdir)/sort-options.pl | $(PERL) $(srcdir)/format-options.pl --strip-not-configured > $@ options.active: cfg_test $(AM_V_CFG_TEST)$(builddir)/cfg_test --named --grammar --active | $(PERL) $(srcdir)/sort-options.pl | $(PERL) $(srcdir)/format-options.pl --strip-not-configured > $@