Define dummy functions to silence warnings

This commit is contained in:
BtbN 2020-09-03 19:34:50 +02:00
parent d3eccc19ab
commit a9435640a0
1 changed files with 24 additions and 0 deletions

View File

@ -9,3 +9,27 @@ TARGET="$1"
VARIANT="${2:-gpl}"
REPO="${DOCKER_REPO:-btbn/ffmpeg-builder}"
IMAGE="$REPO:$TARGET-$VARIANT"
ffbuild_configure() {
return 0
}
ffbuild_unconfigure() {
return 0
}
ffbuild_cflags() {
return 0
}
ffbuild_uncflags() {
return 0
}
ffbuild_ldflags() {
return 0
}
ffbuild_unldflags() {
return 0
}