File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -11,14 +11,14 @@ if [ ! -d "${DEPENDENCY_INSTALL_PATH}/lib/" ]; then
11
11
bunzip2 ffmpeg-${DEPENDENCY_VERSION} .tar.bz2
12
12
tar -xvf ffmpeg-${DEPENDENCY_VERSION} .tar
13
13
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
15
15
16
16
elif [[ ${DEPENDENCY_NAME} == " libav" ]]; then
17
17
18
18
wget https://libav.org/releases/libav-${DEPENDENCY_VERSION} .tar.gz
19
19
tar -xvf libav-${DEPENDENCY_VERSION} .tar.gz
20
20
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
22
22
23
23
fi
24
24
You can’t perform that action at this time.
0 commit comments