mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-01-27 23:47:19 +01:00
tools: util-linux: update to 2.41.3
Release notes: https://www.kernel.org/pub/linux/utils/util-linux/v2.41/v2.41.3-ReleaseNotes Remove upstreamed: 110-meson-fix-a-bug-in-posixipc_libs-configuration.patch Signed-off-by: Wei-Ting Yang <williamatcg@gmail.com> Link: https://github.com/openwrt/openwrt/pull/21276 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
This commit is contained in:
parent
2139360a78
commit
99fd5aa496
2 changed files with 3 additions and 26 deletions
|
|
@ -1,5 +1,5 @@
|
|||
#
|
||||
# Copyright (C) 2006-2015 OpenWrt.org
|
||||
# Copyright (C) 2006-2025 OpenWrt.org
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
|
|
@ -7,11 +7,11 @@
|
|||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=util-linux
|
||||
PKG_VERSION:=2.41.2
|
||||
PKG_VERSION:=2.41.3
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
||||
PKG_SOURCE_URL:=@KERNEL/linux/utils/$(PKG_NAME)/v2.41
|
||||
PKG_HASH:=6062a1d89b571a61932e6fc0211f36060c4183568b81ee866cf363bce9f6583e
|
||||
PKG_HASH:=3330d873f0fceb5560b89a7dc14e4f3288bbd880e96903ed9b50ec2b5799e58b
|
||||
PKG_CPE_ID:=cpe:/a:kernel:util-linux
|
||||
|
||||
include $(INCLUDE_DIR)/host-build.mk
|
||||
|
|
|
|||
|
|
@ -1,23 +0,0 @@
|
|||
From 946c0b9c6f6481ed9370b8bd0f54a622a0c4a574 Mon Sep 17 00:00:00 2001
|
||||
From: Martin Valgur <martin.valgur@gmail.com>
|
||||
Date: Tue, 15 Apr 2025 16:19:21 +0300
|
||||
Subject: [PATCH] meson: fix a bug in posixipc_libs configuration
|
||||
|
||||
Should append instead of assigning. Otherwise fails with
|
||||
|
||||
meson.build:1482:22: ERROR: Object <[ExternalLibraryHolder] holds [ExternalLibrary]: <ExternalLibrary rt: True>> of type ExternalLibrary does not support the `+` operator.
|
||||
---
|
||||
meson.build | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
--- a/meson.build
|
||||
+++ b/meson.build
|
||||
@@ -1473,7 +1473,7 @@ has_seminfo_type = cc.has_type('struct s
|
||||
|
||||
posixipc_libs = []
|
||||
if not cc.has_function('shm_open') and conf.get('HAVE_SYS_MMAN_H').to_string() == '1'
|
||||
- posixipc_libs = cc.find_library('rt', required : true)
|
||||
+ posixipc_libs += cc.find_library('rt', required : true)
|
||||
endif
|
||||
|
||||
if not cc.has_function('sem_close') and conf.get('HAVE_SEMAPHORE_H').to_string() == '1'
|
||||
Loading…
Add table
Reference in a new issue