From 63aa380108b971d40bd403b6e2bfdb542346b81b Mon Sep 17 00:00:00 2001 From: Luka Vandervelden Date: Mon, 26 Aug 2019 15:56:15 +0200 Subject: [PATCH] busybox: portability fix --- busybox/recipe.spec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/busybox/recipe.spec b/busybox/recipe.spec index 39ba3ef..a0256fb 100644 --- a/busybox/recipe.spec +++ b/busybox/recipe.spec @@ -4,7 +4,8 @@ release: 1 sources: https://busybox.net/downloads/busybox-%{version}.tar.bz2 @configure cd busybox-%{version} && make defconfig - sed -i -e 's/.*CONFIG_STATIC.*/CONFIG_STATIC=y/' busybox-%{version}/.config + sed -e 's/.*CONFIG_STATIC.*/CONFIG_STATIC=y/' busybox-%{version}/.config > config-new + mv config-new busybox-%{version}/.config @install mkdir -p '%{pkg}/bin'