From 003d587e6b1fb080a4cf702a56540eb65ed8542f Mon Sep 17 00:00:00 2001 From: aldot Date: Wed, 5 Oct 2005 13:55:45 +0000 Subject: - fix generation of .depend when building out of tree. point bb_mkdep to the source directory and not the build-directory. git-svn-id: svn://busybox.net/trunk/busybox@11770 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7f29037f5..bd8e47c6d 100644 --- a/Makefile +++ b/Makefile @@ -275,7 +275,7 @@ depend dep $(top_builddir)/.depend: .depend .depend: scripts/bb_mkdep $(DEP_INCLUDES) @rm -f .depend @mkdir -p include/config - scripts/bb_mkdep -c include/config.h -c include/bb_config.h > $@.tmp + scripts/bb_mkdep -c include/config.h -c include/bb_config.h $(top_srcdir)/ > $@.tmp mv $@.tmp $@ include/config.h: .config -- cgit v1.2.3-55-g6feb