From: Wei-Ting Yang Date: Fri, 13 Feb 2026 04:37:51 +0000 (+0800) Subject: elfutils: fix license X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cd39bc2c5bd726ddf8a3018551e05280740b4547;p=thirdparty%2Fopenwrt.git elfutils: fix license Remove OR between GPL-2.0-or-later and LGPL-3.0-or-later to avoid incorrect parsing of OR as a separate license in the SBOM. Fixes: 9a157b5d83d28043ea35501a19702beee5f8a107 Signed-off-by: Wei-Ting Yang Link: https://github.com/openwrt/openwrt/pull/22003 Signed-off-by: Robert Marko --- diff --git a/package/libs/elfutils/Makefile b/package/libs/elfutils/Makefile index 74f5ea07592..4507a010890 100644 --- a/package/libs/elfutils/Makefile +++ b/package/libs/elfutils/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=elfutils PKG_VERSION:=0.192 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=https://sourceware.org/$(PKG_NAME)/ftp/$(PKG_VERSION) \ @@ -16,7 +16,7 @@ PKG_SOURCE_URL:=https://sourceware.org/$(PKG_NAME)/ftp/$(PKG_VERSION) \ PKG_HASH:=616099beae24aba11f9b63d86ca6cc8d566d968b802391334c91df54eab416b4 PKG_MAINTAINER:=Luiz Angelo Daros de Luca -PKG_LICENSE:=GPL-2.0-or-later OR LGPL-3.0-or-later +PKG_LICENSE:=GPL-2.0-or-later LGPL-3.0-or-later PKG_LICENSE_FILES:=COPYING COPYING-GPLV2 COPYING-LGPLV3 PKG_CPE_ID:=cpe:/a:elfutils_project:elfutils