fix up TMPDIR for initial prereq check to avoid creating a bogus build_ directory

SVN-Revision: 4617
lede-17.01
Felix Fietkau 2006-08-21 23:13:17 +00:00
parent 34a8300f0d
commit bbda94d4f9
1 changed files with 2 additions and 1 deletions

View File

@ -96,10 +96,11 @@ toolchain/%: FORCE
@touch $@
.prereq-packages: include/prereq.mk .pkginfo .config
@$(NO_TRACE_MAKE) -s -C package prereq 2>/dev/null || { \
@$(NO_TRACE_MAKE) -s -C package TMPDIR="$(TOPDIR)/tmp" prereq 2>/dev/null || { \
echo "Prerequisite check failed. Use FORCE=1 to override."; \
false; \
}
rm -rf "$(TOPDIR)/tmp"
@touch $@
prereq: .prereq-build .prereq-packages FORCE