mirror of
https://git.tukaani.org/xz.git
synced 2025-02-20 15:38:13 +00:00
CI: Only run autogen.sh if it has not already run.
This commit is contained in:
parent
32287dc8de
commit
0dec634e70
@ -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"
|
||||
cd "$DEST_DIR"
|
||||
# Generate configure option values
|
||||
|
||||
# Run autogen.sh script if not already run
|
||||
if [ ! -f configure ]
|
||||
then
|
||||
"./autogen.sh"
|
||||
fi
|
||||
|
||||
cd "$DEST_DIR"
|
||||
|
||||
# Generate configure option values
|
||||
EXTRA_OPTIONS=""
|
||||
FILTER_LIST="lzma1,lzma2"
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user