From 3611138e979e8debbc6440b63fec831357ef53ae Mon Sep 17 00:00:00 2001 From: Luka Vandervelden Date: Mon, 26 Aug 2019 16:29:25 +0200 Subject: [PATCH] busybox: portability fix --- busybox/recipe.spec | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/busybox/recipe.spec b/busybox/recipe.spec index a0256fb..751c2da 100644 --- a/busybox/recipe.spec +++ b/busybox/recipe.spec @@ -3,9 +3,10 @@ version: 1.31.0 release: 1 sources: https://busybox.net/downloads/busybox-%{version}.tar.bz2 @configure - cd busybox-%{version} && make defconfig - sed -e 's/.*CONFIG_STATIC.*/CONFIG_STATIC=y/' busybox-%{version}/.config > config-new - mv config-new busybox-%{version}/.config + cd busybox-%{version} + make defconfig + sed -e 's/.*CONFIG_STATIC.*/CONFIG_STATIC=y/' .config > config-new + mv config-new .config @install mkdir -p '%{pkg}/bin'