Repository: aurora Updated Branches: refs/heads/master c8e89538e -> 220e23b6e
Fix thrift bootstrap to use python2.7. Reviewed at https://reviews.apache.org/r/54669/ Project: http://git-wip-us.apache.org/repos/asf/aurora/repo Commit: http://git-wip-us.apache.org/repos/asf/aurora/commit/220e23b6 Tree: http://git-wip-us.apache.org/repos/asf/aurora/tree/220e23b6 Diff: http://git-wip-us.apache.org/repos/asf/aurora/diff/220e23b6 Branch: refs/heads/master Commit: 220e23b6e5c7647e822fd4b87be0709621bb453f Parents: c8e8953 Author: Joshua Cohen <[email protected]> Authored: Mon Dec 12 11:33:39 2016 -0600 Committer: Joshua Cohen <[email protected]> Committed: Mon Dec 12 11:33:39 2016 -0600 ---------------------------------------------------------------------- build-support/thrift/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/aurora/blob/220e23b6/build-support/thrift/Makefile ---------------------------------------------------------------------- diff --git a/build-support/thrift/Makefile b/build-support/thrift/Makefile index 02e9835..f440b61 100644 --- a/build-support/thrift/Makefile +++ b/build-support/thrift/Makefile @@ -56,7 +56,7 @@ $(THRIFT): patch -p1 < ../AURORA-1727.compiler.cpp.Makefile.in.patch && \ patch -p1 < ../AURORA-1727.compiler.cpp.src.generate.t_java_generator.cc.patch && \ patch -p1 < ../AURORA-1727.lib.py.setup.py.patch && \ - ./configure $(THRIFT_CONFIGURE_FLAGS) && \ + PYTHON=$$(which python2.7) ./configure $(THRIFT_CONFIGURE_FLAGS) && \ make -j4 clean:
