mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-01-21 12:21:38 +01:00
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>
29 lines
746 B
Makefile
29 lines
746 B
Makefile
#
|
|
# Copyright (C) 2006-2025 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=util-linux
|
|
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:=3330d873f0fceb5560b89a7dc14e4f3288bbd880e96903ed9b50ec2b5799e58b
|
|
PKG_CPE_ID:=cpe:/a:kernel:util-linux
|
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
include $(INCLUDE_DIR)/meson.mk
|
|
|
|
MESON_HOST_ARGS += \
|
|
$(if $(findstring y,$(YEAR_2038)),,-Dallow-32bit-time=true) \
|
|
-Dauto_features=disabled \
|
|
-Dbuild-hexdump=enabled \
|
|
-Dbuild-libuuid=enabled \
|
|
-Dncurses=enabled \
|
|
-Dprogram-tests=false
|
|
|
|
$(eval $(call HostBuild))
|