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

SVN-Revision: 4617
This commit is contained in:
Felix Fietkau 2006-08-21 23:13:17 +00:00
parent 34a8300f0d
commit bbda94d4f9

View file

@ -96,10 +96,11 @@ toolchain/%: FORCE
@touch $@ @touch $@
.prereq-packages: include/prereq.mk .pkginfo .config .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."; \ echo "Prerequisite check failed. Use FORCE=1 to override."; \
false; \ false; \
} }
rm -rf "$(TOPDIR)/tmp"
@touch $@ @touch $@
prereq: .prereq-build .prereq-packages FORCE prereq: .prereq-build .prereq-packages FORCE