From 833bd897c3c1320e87996c944bb0de0e886bde2c Mon Sep 17 00:00:00 2001 From: Sebastian Ertz Date: Sun, 18 Aug 2019 12:44:14 +0200 Subject: [PATCH] busybox: fix work around for DESTDIR --- core/busybox/build | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/core/busybox/build b/core/busybox/build index 0fb1cebe..ff92493f 100755 --- a/core/busybox/build +++ b/core/busybox/build @@ -1,10 +1,7 @@ #!/bin/sh -e make -make install - -# Work around no 'DESTDIR'. -cp -a _install/. "$1" +make CONFIG_PREFIX="$1" install # Fix package filesystem. mv "$1/bin/"* "$1/usr/bin"