Date: Thu, 31 Dec 2020 04:25:07 GMT From: Glen Barber <gjb@FreeBSD.org> To: doc-committers@FreeBSD.org, dev-commits-doc-all@FreeBSD.org Subject: git: d89f64cb54 - main - docbuild: source 'local.conf' for machine-specific variables if exists Message-ID: <202012310425.0BV4P7hA048380@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by gjb: URL: https://cgit.FreeBSD.org/doc/commit/?id=d89f64cb54d74aad3117c7b38229568e1ef2bde6 commit d89f64cb54d74aad3117c7b38229568e1ef2bde6 Author: Glen Barber <gjb@FreeBSD.org> AuthorDate: 2020-12-31 04:24:38 +0000 Commit: Glen Barber <gjb@FreeBSD.org> CommitDate: 2020-12-31 04:24:38 +0000 docbuild: source 'local.conf' for machine-specific variables if exists Sponsored by: Rubicon Communications, LLC (netgate.com) --- share/tools/dobuild_wrap.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/share/tools/dobuild_wrap.sh b/share/tools/dobuild_wrap.sh index c62dfa7bfc..83d84ed37a 100755 --- a/share/tools/dobuild_wrap.sh +++ b/share/tools/dobuild_wrap.sh @@ -29,6 +29,10 @@ # Wrapper around doc build. Simplifies main build script. # NOTE: This script is not automatically updated on the builder. +if [ -f "${PWD}/local.conf" ]; then + . ${PWD}/local.conf +fi + # # Default configuration. #
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202012310425.0BV4P7hA048380>