Update Qt to 6.3.1 in prepare script.

This commit is contained in:
John Preston 2022-06-15 12:57:54 +04:00
parent 798998203a
commit 0f5d71434f
1 changed files with 6 additions and 6 deletions

View File

@ -1209,22 +1209,22 @@ mac:
""") """)
if buildQt6: if buildQt6:
stage('qt_6_3_0', """ stage('qt_6_3_1', """
mac: mac:
git clone -b v6.3.0 https://code.qt.io/qt/qt5.git qt_6_3_0 git clone -b v6.3.1 https://code.qt.io/qt/qt5.git qt_6_3_1
cd qt_6_3_0 cd qt_6_3_1
perl init-repository --module-subset=qtbase,qtimageformats,qtsvg,qt5compat perl init-repository --module-subset=qtbase,qtimageformats,qtsvg,qt5compat
depends:patches/qtbase_6_3_0/*.patch depends:patches/qtbase_6_3_1/*.patch
cd qtbase cd qtbase
find ../../patches/qtbase_6_3_0 -type f -print0 | sort -z | xargs -0 git apply find ../../patches/qtbase_6_3_1 -type f -print0 | sort -z | xargs -0 git apply
cd .. cd ..
CONFIGURATIONS=-debug CONFIGURATIONS=-debug
release: release:
CONFIGURATIONS=-debug-and-release CONFIGURATIONS=-debug-and-release
mac: mac:
./configure -prefix "$USED_PREFIX/Qt-6.3.0" \ ./configure -prefix "$USED_PREFIX/Qt-6.3.1" \
$CONFIGURATIONS \ $CONFIGURATIONS \
-force-debug-info \ -force-debug-info \
-opensource \ -opensource \