Minor Kudu build fixes

1) Add Ubuntu 12 to the unsupported OSs list.
2) Update Kudu sink stub.
3) Don't try to download Kudu if it isn't supported.

Change-Id: I6412ea0c79c9f2a2e3285b532372076ca437400d
Reviewed-on: http://gerrit.cloudera.org:8080/2547
Reviewed-by: Dan Hecht <dhecht@cloudera.com>
Tested-by: Casey Ching <casey@cloudera.com>
This commit is contained in:
Casey Ching
2016-03-14 23:52:04 -07:00
parent 7381304a23
commit 71785bdf6a
3 changed files with 9 additions and 2 deletions

View File

@@ -199,6 +199,8 @@ def unpack_name_and_version(package):
if __name__ == "__main__":
packages = ["avro", "boost", "bzip2", "gcc", "gflags", "glog",
"gperftools", "gtest", "kudu", "llvm", ("llvm", "3.3-p1"), ("llvm", "3.7.0"),
"gperftools", "gtest", "llvm", ("llvm", "3.3-p1"), ("llvm", "3.7.0"),
"lz4", "openldap", "rapidjson", "re2", "snappy", "thrift", "zlib"]
if os.environ["KUDU_IS_SUPPORTED"] == "true":
packages.append("kudu")
bootstrap(packages)