This is an automated email from the git hooks/post-receive script.
robert.savoye pushed a commit to branch parser in repository toolchain/abe.
The following commit(s) were added to refs/heads/parser by this push: new 91eb6f4 Use data array in make_docs() to get the builddir. 91eb6f4 is described below
commit 91eb6f4c348c0c45dc816ca459b76ca9b73af44d Author: Rob Savoye rob.savoye@linaro.org Date: Thu Aug 20 19:52:29 2015 -0600
Use data array in make_docs() to get the builddir.
Change-Id: I8bd743603c22b9bb13fa55bfd598f8e0232cce1c --- lib/make.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/lib/make.sh b/lib/make.sh index 4e58ae9..9642498 100755 --- a/lib/make.sh +++ b/lib/make.sh @@ -856,7 +856,8 @@ make_docs() { trace "$*"
- local builddir="`get_builddir $1 ${2:+$2}`" + local component="`echo $1 | sed -e 's:.git.*::' -e 's:-[0-9a-z.-]*::'`" + local builddir="`get_component_builddir ${component}`${2:+-$2}"
notice "Making docs in ${builddir}"