diff options
author | Jan Huwald <jh@sotun.de> | 2012-03-06 14:32:01 (GMT) |
---|---|---|
committer | Jan Huwald <jh@sotun.de> | 2012-03-06 14:32:01 (GMT) |
commit | 56878581f13fd4f4ebe4625a8c40318011836d3c (patch) | |
tree | 805f9483e89b5fa0a84ed8dd07e56d151c814556 | |
parent | e3973de8076dc75d6a6eaf85a901a39ca7607a9b (diff) |
Makefile: fix recursiveness of make oldconfig
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -54,7 +54,7 @@ image/%: config/$$(REPO)-$$(HW).config openwrt/$$(REPO)/.repo_access toolbin/merge_config --merge --verbose --dst openwrt/$(REPO)/files \ files/common $(shell toolbin/extract_variants files/$(HW)) toolbin/name_firmware openwrt/$(REPO) - cd openwrt/$(REPO) && while true; do echo; done | make oldconfig >/dev/null + cd openwrt/$(REPO) && while true; do echo; done | $(MAKE) oldconfig >/dev/null cd openwrt/$(REPO) && $(MAKE) mkdir -p $(shell dirname $@) rsync -a openwrt/$(REPO)/bin/$(PLATFORM)/ $@/ |