From: Felix Fietkau Date: Mon, 29 May 2017 12:26:36 +0000 (+0200) Subject: build: fix kmod package build on non-GNU systems X-Git-Tag: v17.01.3~78 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=27da508749e038479ceb19435cf2ca548cd5aef8 build: fix kmod package build on non-GNU systems BSD paste requires a filename argument, and it accepts - to use stdin as intended. Signed-off-by: Felix Fietkau --- diff --git a/include/kernel.mk b/include/kernel.mk index 5e2111c849..b1d0e8d927 100644 --- a/include/kernel.mk +++ b/include/kernel.mk @@ -131,7 +131,7 @@ define ModuleAutoLoad }; \ $(3) \ if [ -n "$$$$$$$$modules" ]; then \ - modules="$$$$$$$$(echo "$$$$$$$$modules" | tr ' ' '\n' | sort | uniq | paste -s -d' ')"; \ + modules="$$$$$$$$(echo "$$$$$$$$modules" | tr ' ' '\n' | sort | uniq | paste -s -d' ' -)"; \ mkdir -p $(2)/etc/modules.d; \ mkdir -p $(2)/CONTROL; \ echo "#!/bin/sh" > $(2)/CONTROL/postinst-pkg; \