This is an automated email from the ASF dual-hosted git repository. nicknezis pushed a commit to branch nicknezis/glog-build-fix in repository https://gitbox.apache.org/repos/asf/incubator-heron.git
commit 50ed5bb63b1000468307f1995cf27c322928e3f4 Author: Nicholas Nezis <[email protected]> AuthorDate: Sun Jan 31 19:46:48 2021 -0500 Putting glog back to 0.3.5 --- WORKSPACE | 5 +++-- third_party/glog/glog.BUILD | 2 -- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/WORKSPACE b/WORKSPACE index e44193f..4281a2a 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -279,8 +279,9 @@ http_archive( http_archive( name = "com_github_google_glog", build_file = "@//:third_party/glog/glog.BUILD", - strip_prefix = "glog-0.4.0", - urls = ["https://github.com/google/glog/archive/v0.4.0.tar.gz"], + sha256 = "7580e408a2c0b5a89ca214739978ce6ff480b5e7d8d7698a2aa92fadc484d1e0", + strip_prefix = "glog-0.3.5", + urls = ["https://github.com/google/glog/archive/v0.3.5.tar.gz"], ) http_archive( diff --git a/third_party/glog/glog.BUILD b/third_party/glog/glog.BUILD index 34e83b1..716c38c 100644 --- a/third_party/glog/glog.BUILD +++ b/third_party/glog/glog.BUILD @@ -41,7 +41,6 @@ common_script = [ ] mac_script = "\n".join(common_script + [ - './autogen.sh', './configure --prefix=$$INSTALL_DIR --enable-shared=no', 'make install', 'rm -rf $$TMP_DIR', @@ -51,7 +50,6 @@ linux_script = "\n".join(common_script + [ 'export VAR_LIBS="-Wl,--rpath -Wl,$$UNWIND_DIR/lib -L$$UNWIND_DIR/lib"', 'export VAR_INCL="-I$$UNWIND_DIR/include"', 'export VAR_LD="-L$$UNWIND_DIR/lib"', - './autogen.sh', 'autoreconf -f -i', './configure --prefix=$$INSTALL_DIR --enable-shared=no LIBS="$$VAR_LIBS" CPPFLAGS="$$VAR_INCL" LDFLAGS="$$VAR_LD"', 'make install LIBS="$$VAR_LIBS" CPPFLAGS="$$VAR_INCL" LDFLAGS="$$VAR_LD"',
