From 0f5d71434fd73ea3f33f1eabee3b4ab9b7cbddc4 Mon Sep 17 00:00:00 2001 From: John Preston Date: Wed, 15 Jun 2022 12:57:54 +0400 Subject: [PATCH] Update Qt to 6.3.1 in prepare script. --- Telegram/build/prepare/prepare.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Telegram/build/prepare/prepare.py b/Telegram/build/prepare/prepare.py index 9cbd36219..18ef8e4fb 100644 --- a/Telegram/build/prepare/prepare.py +++ b/Telegram/build/prepare/prepare.py @@ -1209,22 +1209,22 @@ mac: """) if buildQt6: - stage('qt_6_3_0', """ + stage('qt_6_3_1', """ mac: - git clone -b v6.3.0 https://code.qt.io/qt/qt5.git qt_6_3_0 - cd 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_1 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 - 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 .. CONFIGURATIONS=-debug release: CONFIGURATIONS=-debug-and-release mac: - ./configure -prefix "$USED_PREFIX/Qt-6.3.0" \ + ./configure -prefix "$USED_PREFIX/Qt-6.3.1" \ $CONFIGURATIONS \ -force-debug-info \ -opensource \