mirror of
https://github.com/python-LimeReport/containers.git
synced 2024-12-24 00:33:05 +03:00
11 lines
263 B
Bash
11 lines
263 B
Bash
|
#!/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"
|
||
|
patch -p1 < "$BASE_FOLDER/fix-build-vaappi-version-1.9.0.diff"
|
||
|
fi
|