Repository: bigtop Updated Branches: refs/heads/master 6087e5018 -> e4ad15776
BIGTOP-2463: bigtop-jsvc build fails on ppc64le architecture Signed-off-by: Konstantin Boudnik <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/e4ad1577 Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/e4ad1577 Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/e4ad1577 Branch: refs/heads/master Commit: e4ad157762ddfccbbca7307bf6c9c76f4a46eb00 Parents: 6087e50 Author: Amir Sanjar <[email protected]> Authored: Fri May 27 13:04:00 2016 -0500 Committer: Konstantin Boudnik <[email protected]> Committed: Fri May 27 11:39:29 2016 -0700 ---------------------------------------------------------------------- bigtop-packages/src/common/bigtop-jsvc/do-component-build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/bigtop/blob/e4ad1577/bigtop-packages/src/common/bigtop-jsvc/do-component-build ---------------------------------------------------------------------- diff --git a/bigtop-packages/src/common/bigtop-jsvc/do-component-build b/bigtop-packages/src/common/bigtop-jsvc/do-component-build index 464bebd..1598a63 100644 --- a/bigtop-packages/src/common/bigtop-jsvc/do-component-build +++ b/bigtop-packages/src/common/bigtop-jsvc/do-component-build @@ -19,7 +19,9 @@ set -ex rm -f jsvc pushd unix - autoreconf +if [ $HOSTTYPE != "powerpc64le" ] ; then + autoreconf +fi ./configure --prefix=/usr make cp -f jsvc ../jsvc
