summaryrefslogtreecommitdiff
path: root/build-aux
diff options
context:
space:
mode:
authorJia Tan <jiat0218@gmail.com>2023-01-12 23:02:20 +0800
committerJia Tan <jiat0218@gmail.com>2023-01-12 23:02:20 +0800
commit0dec634e705b5bf89a37c5d62d71e8511d480058 (patch)
treed8bd9576c08c9a041637aa395402c51a6811e96d /build-aux
parent32287dc8def94df4546e903495d14c132bd54cc4 (diff)
downloadxz-0dec634e705b5bf89a37c5d62d71e8511d480058.tar.gz
CI: Only run autogen.sh if it has not already run.
Diffstat (limited to 'build-aux')
-rwxr-xr-xbuild-aux/ci_build.sh11
1 files changed, 8 insertions, 3 deletions
diff --git a/build-aux/ci_build.sh b/build-aux/ci_build.sh
index fa2a166..0e43d29 100755
--- a/build-aux/ci_build.sh
+++ b/build-aux/ci_build.sh
@@ -102,12 +102,17 @@ if [ "$PHASE" = "all" ] || [ "$PHASE" = "build" ]; then
mkdir -p "$DEST_DIR"
case $BUILD_SYSTEM in
autotools)
- # Run autogen.sh script
cd "$SRC_DIR"
- "./autogen.sh"
+
+ # Run autogen.sh script if not already run
+ if [ ! -f configure ]
+ then
+ "./autogen.sh"
+ fi
+
cd "$DEST_DIR"
- # Generate configure option values
+ # Generate configure option values
EXTRA_OPTIONS=""
FILTER_LIST="lzma1,lzma2"