Skip to content

Commit 17ea9e3

Browse files
authored
Merge pull request #1069 from arthenica/github-actions-fix
fix weekly builds
2 parents ea8e8de + fb2ebfd commit 17ea9e3

2 files changed

Lines changed: 11 additions & 5 deletions

File tree

scripts/android/libiconv.sh

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
11
#!/bin/bash
22

3-
# INIT SUBMODULES
3+
# FIX HARD-CODED PATHS
44
${SED_INLINE} 's|git://git.savannah.gnu.org|https://github.com/arthenica|g' "${BASEDIR}"/src/"${LIB_NAME}"/.gitmodules || return 1
5-
./gitsub.sh pull || return 1
5+
ln -s -f $(which aclocal) ${BASEDIR}/.tmp/aclocal-1.16
6+
ln -s -f $(which automake) ${BASEDIR}/.tmp/automake-1.16
7+
PATH="${BASEDIR}/.tmp":$PATH
8+
9+
if [[ ! -d "${BASEDIR}"/src/"${LIB_NAME}"/gnulib ]]; then
10+
11+
# INIT SUBMODULES
12+
./gitsub.sh pull || return 1
13+
./gitsub.sh checkout gnulib 485d983b7795548fb32b12fbe8370d40789e88c4 || return 1
14+
fi
615

716
# ALWAYS CLEAN THE PREVIOUS BUILD
817
make distclean 2>/dev/null 1>/dev/null

scripts/apple/libogg.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@ if [[ ! -f "${BASEDIR}"/src/"${LIB_NAME}"/configure ]] || [[ ${RECONF_libogg} -e
88
autoreconf_library "${LIB_NAME}" 1>>"${BASEDIR}"/build.log 2>&1 || return 1
99
fi
1010

11-
# FIX INCLUDE PATHS
12-
${SED_INLINE} 's/sys\/types/stdint/g' ${BASEDIR}/src/libogg/include/ogg/os_types.h
13-
1411
./configure \
1512
--prefix="${LIB_INSTALL_PREFIX}" \
1613
--with-pic \

0 commit comments

Comments
 (0)