Skip to content

Commit 88bc65d

Browse files
committed
test
1 parent c97a4ae commit 88bc65d

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

build-libass.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@ export PATH=$TOOLCHAIN_SRCDIR:$PATH
1616
echo -e "\n[Build fribidi]"
1717
cd $SRC_DIR/fribidi
1818
NOCONFIGURE=1 ./autogen.sh
19-
FRIBIDI_CFLAGS="$CFLAGS -DHAVE_STRINGIZE -DDONT_HAVE_FRIBIDI_UNICODE_VERSION_H"
19+
FRIBIDI_CFLAGS="-DHAVE_STRINGIZE"
2020
CFLAGS="$FRIBIDI_CFLAGS" ./configure "--host=${BUILD_ARCH}-windows" --prefix=$INSTALL_PREFIX --disable-shared --enable-static --disable-dependency-tracking
21-
make -C lib install -j$(nproc) CFLAGS="$FRIBIDI_CFLAGS"
21+
make -C gen.tab install -j$(nproc) CFLAGS="$FRIBIDI_CFLAGS"
22+
make -C lib install -j$(nproc) CFLAGS="$CFLAGS $FRIBIDI_CFLAGS"
2223
make install-data-am
2324

2425

build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ add_ffargs() {
3535
apply-patch() {
3636
GIT_CMD="git -C $1 apply $(pwd)/patches/$2 --ignore-whitespace"
3737
if ! $GIT_CMD -R --check 2>/dev/null; then
38-
echo Apply patch $2 for $1
38+
echo Apply $2 for $1
3939
$GIT_CMD
4040
else
4141
echo Skip $2 for $1
@@ -62,7 +62,7 @@ if [ -n "$ENABLE_LIBHARFBUZZ" ]; then
6262
fi
6363

6464
if [ -n "$ENABLE_LIBASS" ]; then
65-
apply-patch fribidi fribidi.patch
65+
# apply-patch fribidi fribidi.patch
6666
./build-libass.sh
6767
add_ffargs "--enable-libass"
6868
fi

0 commit comments

Comments
 (0)