summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2005-10-05 13:55:45 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2005-10-05 13:55:45 +0000
commitb48bfe795ec20dc03ead851ea7c56b053f1289af (patch)
tree43a9067b39e7cb16dba84b62402144289d953cba /Makefile
parent83e1884d0c8b6eed9995eb6634cf7836df0658cb (diff)
downloadbusybox-w32-b48bfe795ec20dc03ead851ea7c56b053f1289af.tar.gz
busybox-w32-b48bfe795ec20dc03ead851ea7c56b053f1289af.tar.bz2
busybox-w32-b48bfe795ec20dc03ead851ea7c56b053f1289af.zip
- fix generation of .depend when building out of tree.
point bb_mkdep to the source directory and not the build-directory.
Diffstat (limited to 'Makefile')
-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