From 047cac34d7c665a426cb6d869e2fbe8ae00df8a3 Mon Sep 17 00:00:00 2001 From: minhanghuang Date: Fri, 8 Mar 2024 14:00:29 +0800 Subject: [PATCH] perf(script): remove duplicates install script --- install.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/install.py b/install.py index c1c9f52..08f523b 100644 --- a/install.py +++ b/install.py @@ -142,15 +142,6 @@ def _clone_gfamily(self): self._cmd("make install -j$(nproc)") os.chdir(self._current_path) - os.chdir(os.path.join(self._dowload_path, "glog")) - self._cmd("mkdir -p build") - os.chdir("build") - self._cmd( - "cmake -Dprotobuf_BUILD_SHARED_LIBS=ON -Dprotobuf_BUILD_TESTS=OFF -DCMAKE_INSTALL_PREFIX={} ..".format( - self._install_prefix)) - self._cmd("make install -j$(nproc)") - os.chdir(self._current_path) - os.chdir(os.path.join(self._dowload_path, "protobuf")) os.chdir("cmake") self._cmd("mkdir -p build")