Skip to content

Commit 318f108

Browse files
committed
test
1 parent cf7a64a commit 318f108

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build-libass.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,23 @@
44
# This software is released under the MIT License.
55
# https://opensource.org/licenses/MIT
66

7-
set -e
7+
set -ex
88
SRC_DIR=$(pwd)
99
export GNULIB_SRCDIR="$SRC_DIR/gnutls/gnulib"
1010
export PATH=$PATH:$GNULIB_SRCDIR
1111

1212
echo -e "\n[Build fribidi]"
1313
cd $SRC_DIR/fribidi
1414
./autogen.sh
15-
./configure --host=${BUILD_ARCH}-windows --prefix=$INSTALL_PREFIX --disable-shared --enable-static --disable-dependency-tracking
15+
./configure "--host=${BUILD_ARCH}-windows" --prefix=$INSTALL_PREFIX --disable-shared --enable-static --disable-dependency-tracking
1616
make -C lib install -j$(nproc) CFLAGS="$CFLAGS -DHAVE_STRINGIZE"
1717
make install-data-am
1818

1919

2020
echo -e "\n[Build libass]"
2121
cd $SRC_DIR/libass
2222
./autogen.sh
23-
./configure --host=${BUILD_ARCH}-windows --prefix=$INSTALL_PREFIX --disable-shared --enable-static --disable-asm --disable-dependency-tracking
23+
./configure "--host=${BUILD_ARCH}-windows" --prefix=$INSTALL_PREFIX --disable-shared --enable-static --disable-asm --disable-dependency-tracking
2424
make install -j$(nproc)
2525
make install-data-am
2626

0 commit comments

Comments
 (0)