BtbN 86871adfca Enable libva on Windows
I was not able to get the driver to work at all.
It just crashes a lot, but since it has no averse side-effects
(hopefully), let's just enable it by default.
2023-09-19 22:54:02 +02:00

19 lines
269 B
Bash
Executable File

#!/bin/bash
SCRIPT_SKIP="1"
ffbuild_enabled() {
return 0
}
ffbuild_dockerdl() {
return 0
}
ffbuild_dockerbuild() {
if [[ $TARGET == linux* ]]; then
rm "$FFBUILD_PREFIX"/lib/lib*.so* || true
rm "$FFBUILD_PREFIX"/lib/*.la || true
fi
}