From 5877785c78009c6d14a39067556b5a47811dcd46 Mon Sep 17 00:00:00 2001 From: Andrew Killer Date: Wed, 18 Mar 2020 12:13:24 +0000 Subject: [PATCH] Avoid failure if USER_BUILD_CONFIGURATION_FLAGS is not set, which would result in a blank line being added to the configure command. --- scripts/ffmpeg/build.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/ffmpeg/build.sh b/scripts/ffmpeg/build.sh index 33a915e..a594b3a 100755 --- a/scripts/ffmpeg/build.sh +++ b/scripts/ffmpeg/build.sh @@ -40,8 +40,7 @@ DEP_LD_FLAGS="-L${BUILD_DIR_EXTERNAL}/${ANDROID_ABI}/lib $FFMPEG_EXTRA_LD_FLAGS" --enable-shared \ --disable-static \ --pkg-config=$(which pkg-config) \ - ${EXTRA_BUILD_CONFIGURATION_FLAGS} \ - ${USER_BUILD_CONFIGURATION_FLAGS} \ + ${EXTRA_BUILD_CONFIGURATION_FLAGS} ${USER_BUILD_CONFIGURATION_FLAGS} \ --disable-runtime-cpudetect \ --disable-programs \ --disable-muxers \