mirror of
https://github.com/python-LimeReport/containers.git
synced 2024-12-23 16:23:00 +03:00
13 lines
295 B
Bash
Executable File
13 lines
295 B
Bash
Executable File
#!/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"
|
|
cd ./qtmultimedia
|
|
patch -p1 < "$BASE_FOLDER/fix-build-vaappi-version-1.9.0.diff"
|
|
cd ..
|
|
fi |