You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by bc...@apache.org on 2018/09/19 17:12:33 UTC

[trafficserver] branch master updated: Run automake and autoconf everytime on a docs build

This is an automated email from the ASF dual-hosted git repository.

bcall pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/master by this push:
     new 171830f  Run automake and autoconf everytime on a docs build
171830f is described below

commit 171830fafad422ad9574e30faa5f39bf1307ae51
Author: Bryan Call <bc...@apache.org>
AuthorDate: Wed Sep 19 08:57:19 2018 -0700

    Run automake and autoconf everytime on a docs build
---
 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