From b0ee50aa5a9d2f0de4704227eb191ced993a27b4 Mon Sep 17 00:00:00 2001 From: Kevin Suo Date: Sun, 1 Mar 2020 22:54:39 +0800 Subject: No need to run autogen.sh for every build Run it for the first build only. --- bibisect_build.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bibisect_build.py b/bibisect_build.py index 1e96cf4..5567a90 100755 --- a/bibisect_build.py +++ b/bibisect_build.py @@ -260,8 +260,10 @@ if __name__ == "__main__": raise Exception(f"Error when checking out {commit_hash}") # Build + if i == 1: + run_process("./autogen.sh", log=log) try: - run_process("./autogen.sh && make build-nocheck", log=log) + run_process("make build-nocheck", log=log) except KeyboardInterrupt: exit(0) except: -- cgit