Skip to content

Commit d1c2876

Browse files
committed
Travis: added -k option when build dependencies
‘--keep-going’: continue as much as possible after an error.
1 parent 72d73a5 commit d1c2876

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
@@ -11,14 +11,14 @@ if [ ! -d "${DEPENDENCY_INSTALL_PATH}/lib/" ]; then
1111
bunzip2 ffmpeg-${DEPENDENCY_VERSION}.tar.bz2
1212
tar -xvf ffmpeg-${DEPENDENCY_VERSION}.tar
1313
cd ffmpeg-${DEPENDENCY_VERSION}
14-
./configure --prefix=${DEPENDENCY_INSTALL_PATH} --disable-yasm --enable-shared --disable-static && make && make install
14+
./configure --prefix=${DEPENDENCY_INSTALL_PATH} --disable-yasm --enable-shared --disable-static && make -k && make install
1515

1616
elif [[ ${DEPENDENCY_NAME} == "libav" ]]; then
1717

1818
wget https://libav.org/releases/libav-${DEPENDENCY_VERSION}.tar.gz
1919
tar -xvf libav-${DEPENDENCY_VERSION}.tar.gz
2020
cd libav-${DEPENDENCY_VERSION}
21-
./configure --prefix=${DEPENDENCY_INSTALL_PATH} --disable-yasm --enable-shared --disable-static && make && make install
21+
./configure --prefix=${DEPENDENCY_INSTALL_PATH} --disable-yasm --enable-shared --disable-static && make -k && make install
2222

2323
fi
2424

0 commit comments

Comments
 (0)