aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
-rwxr-xr-xscripts/embedded_scripts2
2 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index c19280476..4b5a01df9 100644
--- a/Makefile
+++ b/Makefile
@@ -361,7 +361,7 @@ scripts/basic/%: scripts_basic ;
361 361
362# This target generates Kbuild's and Config.in's from *.c files 362# This target generates Kbuild's and Config.in's from *.c files
363PHONY += gen_build_files 363PHONY += gen_build_files
364gen_build_files: $(wildcard $(srctree)/*/*.c) $(wildcard $(srctree)/*/*/*.c) $(wildcard embed/*) 364gen_build_files: $(wildcard $(srctree)/*/*.c) $(wildcard $(srctree)/*/*/*.c) $(wildcard $(srctree)/embed/*)
365 $(Q)$(srctree)/scripts/gen_build_files.sh $(srctree) $(objtree) 365 $(Q)$(srctree)/scripts/gen_build_files.sh $(srctree) $(objtree)
366 366
367# bbox: we have helpers in applets/ 367# bbox: we have helpers in applets/
@@ -853,7 +853,7 @@ quiet_cmd_split_autoconf = SPLIT include/autoconf.h -> include/config/*
853quiet_cmd_gen_embedded_scripts = GEN include/embedded_scripts.h 853quiet_cmd_gen_embedded_scripts = GEN include/embedded_scripts.h
854 cmd_gen_embedded_scripts = $(srctree)/scripts/embedded_scripts include/embedded_scripts.h $(srctree)/embed $(srctree)/applets_sh 854 cmd_gen_embedded_scripts = $(srctree)/scripts/embedded_scripts include/embedded_scripts.h $(srctree)/embed $(srctree)/applets_sh
855#bbox# piggybacked generation of few .h files 855#bbox# piggybacked generation of few .h files
856include/config/MARKER: scripts/basic/split-include include/autoconf.h $(wildcard embed/*) scripts/embedded_scripts 856include/config/MARKER: scripts/basic/split-include include/autoconf.h $(wildcard $(srctree)/embed/*) $(srctree)/scripts/embedded_scripts
857 $(call cmd,split_autoconf) 857 $(call cmd,split_autoconf)
858 $(call cmd,gen_bbconfigopts) 858 $(call cmd,gen_bbconfigopts)
859 $(call cmd,gen_common_bufsiz) 859 $(call cmd,gen_common_bufsiz)
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" ]
20then 20then
21 custom_scripts=$(cd $custom_loc; ls * 2>/dev/null) 21 custom_scripts=$(cd $custom_loc; ls * 2>/dev/null)
22fi 22fi
23all_scripts=$(applets/busybox.mkscripts) 23all_scripts=$($srctree/applets/busybox.mkscripts)
24 24
25# all_scripts includes applet scripts and custom scripts, sort them out 25# all_scripts includes applet scripts and custom scripts, sort them out
26applet_scripts="" 26applet_scripts=""