You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by da...@apache.org on 2016/01/14 04:32:54 UTC

incubator-kudu git commit: Use enable_devtoolset.sh in make_site.sh

Repository: incubator-kudu
Updated Branches:
  refs/heads/master 160cb18f9 -> 43bdbdcde


Use enable_devtoolset.sh in make_site.sh

Enabling the devtoolset is necessary when running on RHEL 6 systems.

Change-Id: I915b7f898f8698ef74ca3cf787e46d20fa71e181
Reviewed-on: http://gerrit.cloudera.org:8080/1781
Reviewed-by: Adar Dembo <ad...@cloudera.com>
Tested-by: Internal Jenkins


Project: http://git-wip-us.apache.org/repos/asf/incubator-kudu/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-kudu/commit/43bdbdcd
Tree: http://git-wip-us.apache.org/repos/asf/incubator-kudu/tree/43bdbdcd
Diff: http://git-wip-us.apache.org/repos/asf/incubator-kudu/diff/43bdbdcd

Branch: refs/heads/master
Commit: 43bdbdcdead20df5e7adb5664e9cad1a4542722c
Parents: 160cb18
Author: Dan Burkert <da...@cloudera.com>
Authored: Wed Jan 13 16:13:00 2016 -0800
Committer: Dan Burkert <da...@cloudera.com>
Committed: Thu Jan 14 01:37:37 2016 +0000

----------------------------------------------------------------------
 docs/support/scripts/make_site.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-kudu/blob/43bdbdcd/docs/support/scripts/make_site.sh
----------------------------------------------------------------------
diff --git a/docs/support/scripts/make_site.sh b/docs/support/scripts/make_site.sh
index ce54a7b..bde72d2 100755
--- a/docs/support/scripts/make_site.sh
+++ b/docs/support/scripts/make_site.sh
@@ -46,12 +46,12 @@ set -x
 cd "$ROOT"
 
 # Build Kudu thirdparty
-./thirdparty/build-if-necessary.sh
+$ROOT/build-support/enable_devtoolset.sh ./thirdparty/build-if-necessary.sh
 echo "Successfully built third-party dependencies."
 
 # Build the binaries so we can auto-generate the command-line references
 rm -rf CMakeCache.txt CMakeFiles
-./thirdparty/installed/bin/cmake -DNO_TESTS=1 .
+$ROOT/build-support/enable_devtoolset.sh ./thirdparty/installed/bin/cmake -DNO_TESTS=1 .
 make -j$(getconf _NPROCESSORS_ONLN)
 rm -rf CMakeCache.txt CMakeFiles