aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-10-05 13:55:45 +0000
committeraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-10-05 13:55:45 +0000
commit003d587e6b1fb080a4cf702a56540eb65ed8542f (patch)
tree43a9067b39e7cb16dba84b62402144289d953cba
parent8158e198408afec57d0102e773ef7a5a22c4eb88 (diff)
downloadbusybox-w32-003d587e6b1fb080a4cf702a56540eb65ed8542f.tar.gz
busybox-w32-003d587e6b1fb080a4cf702a56540eb65ed8542f.tar.bz2
busybox-w32-003d587e6b1fb080a4cf702a56540eb65ed8542f.zip
- 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
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7f29037f5..bd8e47c6d 100644
--- a/Makefile
+++ b/Makefile
@@ -275,7 +275,7 @@ depend dep $(top_builddir)/.depend: .depend
275.depend: scripts/bb_mkdep $(DEP_INCLUDES) 275.depend: scripts/bb_mkdep $(DEP_INCLUDES)
276 @rm -f .depend 276 @rm -f .depend
277 @mkdir -p include/config 277 @mkdir -p include/config
278 scripts/bb_mkdep -c include/config.h -c include/bb_config.h > $@.tmp 278 scripts/bb_mkdep -c include/config.h -c include/bb_config.h $(top_srcdir)/ > $@.tmp
279 mv $@.tmp $@ 279 mv $@.tmp $@
280 280
281include/config.h: .config 281include/config.h: .config