From 7d9d4a9361386c8ede5d6d67785b6bc42013374c Mon Sep 17 00:00:00 2001 From: Mirko Vogt Date: Sun, 18 May 2025 21:12:57 +0000 Subject: [PATCH] qt5/common: official module names don't contain dashes strip '-' from PKG_NAME to determine official module name, but keep them inside PKG_NAMEs for readibility (same as we still have the major version number inside PKG_NAMEs) --- frameworks/qt5/common.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frameworks/qt5/common.mk b/frameworks/qt5/common.mk index cdb360c..b4c694e 100644 --- a/frameworks/qt5/common.mk +++ b/frameworks/qt5/common.mk @@ -54,7 +54,7 @@ QT_HOSTPKG_DEMOS:=$(QT_HOSTPKG_EXAMPLES) PKG_VERSION?=5.15.16 PKG_SOURCE_URL?=https://download.qt.io/official_releases/qt/$(basename $(PKG_VERSION))/$(PKG_VERSION)/submodules -PKG_SYS_NAME?=$(subst $(firstword $(subst ., ,$(PKG_VERSION))),,$(PKG_NAME)) +PKG_SYS_NAME?=$(subst -,,$(subst $(firstword $(subst ., ,$(PKG_VERSION))),,$(PKG_NAME))) PKG_SYS_NAME_FULL?=$(PKG_SYS_NAME)-everywhere-src-$(PKG_VERSION) PKG_SOURCE?=$(subst -src-,-opensource-src-,$(PKG_SYS_NAME_FULL)).tar.xz -- 2.30.2