Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKacper Michajłow <kasper93@gmail.com>2017-08-25 23:38:42 +0300
committerKacper Michajłow <kasper93@gmail.com>2017-08-28 00:14:49 +0300
commit51721b1cae9a888748c953317cad55529281321c (patch)
tree554f3bcbec5c894b0f5ece4d1249cd063365ffd4
parentbd7ab544e727bd1256ecd2f8953674ea405f1b28 (diff)
LAVFilter: Fix clean target.
-rwxr-xr-xsrc/thirdparty/LAVFilters/build_ffmpeg.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/thirdparty/LAVFilters/build_ffmpeg.sh b/src/thirdparty/LAVFilters/build_ffmpeg.sh
index e595c178e..decc20681 100755
--- a/src/thirdparty/LAVFilters/build_ffmpeg.sh
+++ b/src/thirdparty/LAVFilters/build_ffmpeg.sh
@@ -51,7 +51,7 @@ copy_libs() {
clean() {
cd ${FFMPEG_BUILD_PATH}
echo Cleaning...
- if [ -f config.mak ]; then
+ if [ -f ffbuild/config.mak ]; then
make distclean > /dev/null 2>&1
fi
cd ${BASEDIR}
@@ -151,7 +151,7 @@ if [ "${3}" == "Clean" ]; then
CONFIGRETVAL=$?
else
## Check if configure was previously run
- if [ -f config.mak ]; then
+ if [ -f ffbuild/config.mak ]; then
CLEANBUILD=0
else
CLEANBUILD=1