0
0
mirror of https://github.com/python-LimeReport/containers.git synced 2024-12-23 16:23:00 +03:00
containers/qt-patches/apply-patches.sh

13 lines
295 B
Bash
Raw Normal View History

2024-03-21 17:38:21 +03:00
#!/bin/sh
BASE_FOLDER="/qt-patches"
echo "Qt version: $QT_VERSION"
# if qt verion is 6.5.3 apply fix
if [ "$QT_VERSION" = "6.5.3" ]; then
echo "Apply fix-build-vaappi-version-1.9.0.diff"
2024-03-21 18:30:20 +03:00
cd ./qtmultimedia
2024-03-21 17:38:21 +03:00
patch -p1 < "$BASE_FOLDER/fix-build-vaappi-version-1.9.0.diff"
2024-03-21 18:30:20 +03:00
cd ..
2024-03-21 17:38:21 +03:00
fi