[ffmpeg] Fix missing double quotes in build.sh.

This commit is contained in:
Max Moroz 2017-10-31 15:41:19 -07:00
parent 5d586c44da
commit 2ed4429e65
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ CFLAGS="$CFLAGS -fPIC" LDFLAGS="-L$FFMPEG_DEPS_PATH/lib/" \
CPPFLAGS="$CXXFLAGS -I$FFMPEG_DEPS_PATH/include/" \
LD_LIBRARY_PATH="$FFMPEG_DEPS_PATH/lib/" \
./autogen.sh
./configure --with-ogg=$FFMPEG_DEPS_PATH --prefix="$FFMPEG_DEPS_PATH" \
./configure --with-ogg="$FFMPEG_DEPS_PATH" --prefix="$FFMPEG_DEPS_PATH" \
--enable-static --disable-examples
make clean
make -j$(nproc)