aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2018-11-18 07:40:40 +0000
committerDenys Vlasenko <vda.linux@googlemail.com>2018-11-18 19:34:39 +0100
commitaf694a4b290e9c664919c8c7bcc98a89dd2fbb7d (patch)
tree81184f076fe0adf4483a2b42f48cf7c2ca61e1df /scripts
parentd1b2ae2d04eae05d76ad3c1a07e9092c7d46c773 (diff)
downloadbusybox-af694a4b290e9c664919c8c7bcc98a89dd2fbb7d.tar.gz
Ensure build works when KBUILD_OUTPUT is set, closes 11511
The build process for embedded scripts didn't have consistent support for saving output to a different directory. Signed-off-by: Ron Yorston <rmy@pobox.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/embedded_scripts2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/embedded_scripts b/scripts/embedded_scripts
index b7a023ce0..c2e7c6961 100755
--- a/scripts/embedded_scripts
+++ b/scripts/embedded_scripts
@@ -20,7 +20,7 @@ if [ -d "$custom_loc" ]
then
custom_scripts=$(cd $custom_loc; ls * 2>/dev/null)
fi
-all_scripts=$(applets/busybox.mkscripts)
+all_scripts=$($srctree/applets/busybox.mkscripts)
# all_scripts includes applet scripts and custom scripts, sort them out
applet_scripts=""