aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbibisect_build.py4
1 files changed, 3 insertions, 1 deletions
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: