summaryrefslogtreecommitdiff
authorDenys Vlasenko <vda.linux@googlemail.com>2010-06-25 11:56:28 (GMT)
committer Denys Vlasenko <vda.linux@googlemail.com>2010-06-25 11:56:28 (GMT)
commit8d444494ef82809f83f75b142c66e0aff0aa9668 (patch)
tree8e18043f50c890f805040c48b69398c87ab52f27
parent1d72d439405fdf4b51eb9e22c5c7a469695ae29c (diff)
downloadbusybox-8d444494ef82809f83f75b142c66e0aff0aa9668.zip
busybox-8d444494ef82809f83f75b142c66e0aff0aa9668.tar.gz
busybox-8d444494ef82809f83f75b142c66e0aff0aa9668.tar.bz2
another fix to gen_build_files / autoconf.h dependency
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 5905121..9a82776 100644
--- a/Makefile
+++ b/Makefile
@@ -360,7 +360,7 @@ scripts/basic/%: scripts_basic ;
# This target generates Kbuild's and Config.in's from *.c files
PHONY += gen_build_files
-gen_build_files:
+gen_build_files: $(wildcard $(srctree)/*/*.c) $(wildcard $(srctree)/*/*/*.c)
$(Q)$(srctree)/scripts/gen_build_files.sh $(srctree) $(objtree)
# bbox: we have helpers in applets/
@@ -509,7 +509,7 @@ include $(srctree)/Makefile.flags
# with it and forgot to run make oldconfig.
# If kconfig.d is missing then we are probarly in a cleaned tree so
# we execute the config step to be sure to catch updated Kconfig files
-include/autoconf.h: .kconfig.d .config | gen_build_files
+include/autoconf.h: .kconfig.d .config $(wildcard $(srctree)/*/*.c) $(wildcard $(srctree)/*/*/*.c) | gen_build_files
$(Q)$(MAKE) -f $(srctree)/Makefile silentoldconfig
else