From 29ee1be50ca2bc8feb3efa1d75740bd539566516 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Mon, 9 Jan 2017 22:41:26 -0500 Subject: [PATCH] Run find-doc-nits in travis Reviewed-by: Richard Levitte Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/2202) --- .travis.yml | 5 ++++- Configurations/unix-Makefile.tmpl | 3 +++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c46956b65f..b6c87662dd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,7 +29,7 @@ compiler: - gcc env: - - CONFIG_OPTS="" DESTDIR="_install" + - CONFIG_OPTS="" DESTDIR="_install" CHECKDOCS="yes" - CONFIG_OPTS="--debug no-shared enable-crypto-mdebug enable-rc5 enable-md2" - CONFIG_OPTS="no-pic --strict-warnings" BUILDONLY="yes" - CONFIG_OPTS="no-engine no-shared --strict-warnings" BUILDONLY="yes" @@ -110,6 +110,9 @@ script: cd _build; fi - $make update + - if [ -n "$CHECKDOCS" ]; then + $make doc-nits; + fi - $make - if [ -z "$BUILDONLY" ]; then if [ -n "$CROSS_COMPILE" ]; then diff --git a/Configurations/unix-Makefile.tmpl b/Configurations/unix-Makefile.tmpl index 84ceb76365..eefb50a8ea 100644 --- a/Configurations/unix-Makefile.tmpl +++ b/Configurations/unix-Makefile.tmpl @@ -323,6 +323,9 @@ install_sw: all install_dev install_engines install_runtime uninstall_sw: uninstall_runtime uninstall_engines uninstall_dev +doc-nits: + $(PERL) util/find-doc-nits.pl -n + install_docs: install_man_docs install_html_docs uninstall_docs: uninstall_man_docs uninstall_html_docs -- 2.25.1