This is an automated email from the ASF dual-hosted git repository.
bcall pushed a commit to branch 8.0.x
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/8.0.x by this push:
new 8de5539 Run automake and autoconf everytime on a docs build
8de5539 is described below
commit 8de55399b2715f699b45e84a36530b274ae74ee3
Author: Bryan Call <[email protected]>
AuthorDate: Wed Sep 19 08:57:19 2018 -0700
Run automake and autoconf everytime on a docs build
(cherry picked from commit 171830fafad422ad9574e30faa5f39bf1307ae51)
---
ci/jenkins/bin/docs.sh | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/ci/jenkins/bin/docs.sh b/ci/jenkins/bin/docs.sh
index 76f9132..6aa2d92 100755
--- a/ci/jenkins/bin/docs.sh
+++ b/ci/jenkins/bin/docs.sh
@@ -20,9 +20,8 @@
test -z "${ATS_MAKE}" && ATS_MAKE="make"
test ! -z "${WORKSPACE}" && cd "${WORKSPACE}/src"
-# This avoids redoing the configure on every doc build, which is somewhat
annoying
-[ ! -f configure ] && autoreconf -fi
-[ ! -f config.nice ] && ./configure --enable-docs
+# Run configure on the docs builds each time in case there have been updates
+autoreconf -fi && ./configure --enable-docs || exit 1
cd doc