Take 5 for javadoc. Deal with pipefail error in sh.
Project: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/commit/6387aabb Tree: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/tree/6387aabb Diff: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/diff/6387aabb Branch: refs/heads/master Commit: 6387aabbd0ddd2c97a18ad3e8d250a15e0aa0d0f Parents: 5fe014b Author: Hans Zeller <[email protected]> Authored: Wed Aug 31 19:17:19 2016 +0000 Committer: Hans Zeller <[email protected]> Committed: Wed Aug 31 19:17:19 2016 +0000 ---------------------------------------------------------------------- core/sqf/sql/scripts/build_apidocs.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/6387aabb/core/sqf/sql/scripts/build_apidocs.sh ---------------------------------------------------------------------- diff --git a/core/sqf/sql/scripts/build_apidocs.sh b/core/sqf/sql/scripts/build_apidocs.sh index 4d342e3..0b57bad 100755 --- a/core/sqf/sql/scripts/build_apidocs.sh +++ b/core/sqf/sql/scripts/build_apidocs.sh @@ -87,7 +87,9 @@ do cd $MY_SQROOT ; make genverhdr cd $MY_SQROOT/src/seatrans/hbase-trx make clean - make + # make sure the set -pipefail command in the make file is + # supported by using bash as the shell + make SHELL=/bin/bash echo "Now make the actual Javadoc" cd $MY_SQROOT/../sql
