Skip to content

Commit 169c05d

Browse files
authored
Merge branch 'develop' into fix_formatHeaderOptions
2 parents 845e2a4 + 236454a commit 169c05d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/travis/linux.install.deps.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ if [ -z ${TRAVIS_JOB_ID} ] || [ ! -d "${DEPENDENCY_INSTALL_PATH}/lib/" ]; then
9696
echo ""
9797
echo "Building libogg (${OGG_VERSION})"
9898
DIR=$(mktemp -d liboggXXX) && cd ${DIR} && \
99-
curl -O http://downloads.xiph.org/releases/ogg/libogg-${OGG_VERSION}.tar.gz && \
99+
wget http://downloads.xiph.org/releases/ogg/libogg-${OGG_VERSION}.tar.gz && \
100100
tar xzf libogg-${OGG_VERSION}.tar.gz && \
101101
cd libogg-${OGG_VERSION} && \
102102
./configure --prefix="${DEPENDENCY_INSTALL_PATH}" --disable-shared --with-pic && \
@@ -108,7 +108,7 @@ if [ -z ${TRAVIS_JOB_ID} ] || [ ! -d "${DEPENDENCY_INSTALL_PATH}/lib/" ]; then
108108
echo ""
109109
echo "Building libvorbis (${VORBIS_VERSION})"
110110
DIR=$(mktemp -d libvorbisXXX) && cd ${DIR} && \
111-
curl -O http://downloads.xiph.org/releases/vorbis/libvorbis-${VORBIS_VERSION}.tar.gz && \
111+
wget http://downloads.xiph.org/releases/vorbis/libvorbis-${VORBIS_VERSION}.tar.gz && \
112112
tar xzf libvorbis-${VORBIS_VERSION}.tar.gz && \
113113
cd libvorbis-${VORBIS_VERSION} && \
114114
./configure --prefix="${DEPENDENCY_INSTALL_PATH}" --with-ogg="${DEPENDENCY_INSTALL_PATH}" --disable-shared --with-pic && \

0 commit comments

Comments
 (0)