From 01ba0f971664d63c41165ca0ac59ed744c8958a4 Mon Sep 17 00:00:00 2001 From: Florian Wickert Date: Fri, 3 May 2024 11:25:20 +0200 Subject: [PATCH] make prepareModules-linux.sh script work without the aqt wrapper binary Depending on the distribution, the aqt binary is not installed or the path is not set correctly. Calling the python interpreter instead always works. --- sources/jvxLibraries/third_party/web/qt/prepareModules-linux.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/jvxLibraries/third_party/web/qt/prepareModules-linux.sh b/sources/jvxLibraries/third_party/web/qt/prepareModules-linux.sh index c2f8c1ba..563ad9dc 100755 --- a/sources/jvxLibraries/third_party/web/qt/prepareModules-linux.sh +++ b/sources/jvxLibraries/third_party/web/qt/prepareModules-linux.sh @@ -6,5 +6,5 @@ # aqt list-qt linux desktop --arch 5.15.2 if [ ! -d "qt/$1/$2" ]; then echo aqt install-qt linux desktop $1 $2 -O qt - aqt install-qt linux desktop $1 $2 -O qt + python3 -m aqt install-qt linux desktop $1 $2 -O qt fi