summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-08-21 23:13:17 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-08-21 23:13:17 +0000
commit387ca04afc1fcef6553c64d2c7a12b83f85ada92 (patch)
tree1e04a68b1c858275e6d97c6c7f5e3c07461a2c44 /Makefile
parent95073162473b4b7c7da92ebaa51c7704647f1e2c (diff)
fix up TMPDIR for initial prereq check to avoid creating a bogus build_ directory
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4617 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5b90c482f..15074c58c 100644
--- a/Makefile
+++ b/Makefile
@@ -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