diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-07-15 23:36:02 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-07-15 23:36:02 +0000 |
commit | de2aa28c4cecf4d63c9ed5e057498bf2c046bb69 (patch) | |
tree | f67b95a6ce7eddee6f9fc83f29bdf1c047cdc828 /include | |
parent | 7b16475eb7c316e9f23d21e572cf1f027e5af380 (diff) | |
download | upstream-de2aa28c4cecf4d63c9ed5e057498bf2c046bb69.tar.gz upstream-de2aa28c4cecf4d63c9ed5e057498bf2c046bb69.tar.bz2 upstream-de2aa28c4cecf4d63c9ed5e057498bf2c046bb69.zip |
properly support dependencies on packages that just use Build/DefaultTargets
SVN-Revision: 7983
Diffstat (limited to 'include')
-rw-r--r-- | include/scan.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/scan.mk b/include/scan.mk index cd1e47e1a3..9bd0f379da 100644 --- a/include/scan.mk +++ b/include/scan.mk @@ -31,7 +31,7 @@ endef $(FILELIST): rm -f tmp/info/.files-$(SCAN_TARGET)-* - find $(SCAN_DIR) $(SCAN_EXTRA) -mindepth 1 $(if $(SCAN_DEPTH),-maxdepth $(SCAN_DEPTH)) -name Makefile | xargs grep -HE 'call (KernelPackage|Build(Package|Kernel))' | sed -e 's#^$(SCAN_DIR)/##' -e 's#/Makefile:.*##' | uniq > $@ + find $(SCAN_DIR) $(SCAN_EXTRA) -mindepth 1 $(if $(SCAN_DEPTH),-maxdepth $(SCAN_DEPTH)) -name Makefile | xargs grep -HE 'call (Build/DefaultTargets|KernelPackage|Build(Package|Kernel))' | sed -e 's#^$(SCAN_DIR)/##' -e 's#/Makefile:.*##' | uniq > $@ tmp/info/.files-$(SCAN_TARGET).mk: $(FILELIST) ( \ |