diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2005-10-05 13:55:45 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2005-10-05 13:55:45 +0000 |
commit | b48bfe795ec20dc03ead851ea7c56b053f1289af (patch) | |
tree | 43a9067b39e7cb16dba84b62402144289d953cba | |
parent | 83e1884d0c8b6eed9995eb6634cf7836df0658cb (diff) | |
download | busybox-b48bfe795ec20dc03ead851ea7c56b053f1289af.tar.gz |
- fix generation of .depend when building out of tree.
point bb_mkdep to the source directory and not the build-directory.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |