mirror of
https://github.com/Ansuel/openwrt.git
synced 2025-12-16 15:01:32 +00:00
Changes: https://www.kernel.org/pub/linux/utils/util-linux/v2.41/v2.41.2-ReleaseNotes Link: https://github.com/openwrt/openwrt/pull/20546 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
29 lines
746 B
Makefile
29 lines
746 B
Makefile
#
|
|
# Copyright (C) 2006-2015 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.2
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
|
PKG_SOURCE_URL:=@KERNEL/linux/utils/$(PKG_NAME)/v2.41
|
|
PKG_HASH:=6062a1d89b571a61932e6fc0211f36060c4183568b81ee866cf363bce9f6583e
|
|
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))
|