From ce12d5b035c075e3cff62f8eb0ea8ef64a762c48 Mon Sep 17 00:00:00 2001 From: Olga Kitaina Date: Tue, 23 Dec 2025 14:41:00 +0400 Subject: [PATCH] ipt-trigger: Revert ipt-trigger build kludge The change to makefile was made because of inconsistent behavior between coreutils and uutils. Considering we don't use uutils in containers right now (and that by the time uutils becomes Ubuntu LTS standard, its behavior is likely to change), we shouldn't patch things for it. --- ipt-trigger/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ipt-trigger/Makefile b/ipt-trigger/Makefile index 1721858cf..bdf357fd5 100644 --- a/ipt-trigger/Makefile +++ b/ipt-trigger/Makefile @@ -66,8 +66,8 @@ define Build/InstallDev endef define Build/Compile - $(KERNEL_MAKE) M="$(PKG_BUILD_DIR)/src/ipv4" modules - $(KERNEL_MAKE) M="$(PKG_BUILD_DIR)/src/ipv6" modules + $(KERNEL_MAKE) M="$(PKG_BUILD_DIR)/src/ipv4/" modules + $(KERNEL_MAKE) M="$(PKG_BUILD_DIR)/src/ipv6/" modules endef $(eval $(call KernelPackage,ipt-trigger))