summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2012-02-05 22:00:39 -0600
committerNorbert Thiebaud <nthiebaud@gmail.com>2012-02-05 22:00:39 -0600
commit8b212711cf09492e07d05b62360d7960d3b0178c (patch)
tree020f6c73194ef864aa7859a9b822abc70dc5f39e /Makefile
parent81e9525305cfe2b9455dadceeda0710e0176448c (diff)
darn! finally bootstrap target (seems to) works on windows... and other
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index a701b507aad7..8d0f18c04876 100644
--- a/Makefile
+++ b/Makefile
@@ -352,8 +352,11 @@ config_host.mk : config_host.mk.in bin/repo-list.in ooo.lst.in configure.in auto
#
# Bootstap
#
+$(WORKDIR)/bootstrap:
+ @cd $(SRCDIR) && ./bootstrap
+ @mkdir -p $(dir $@) && touch $@
-bootstrap: $(SRCDIR)/workdir/$(INPATH)/bootstrap
+bootstrap: $(WORKDIR)/bootstrap
#
# Fetch
@@ -362,7 +365,7 @@ fetch: src.downloaded
src.downloaded : autogen ooo.lst download
ifeq ($(DO_FETCH_TARBALLS),YES)
- ./download $(SRCDIR)/ooo.lst && touch $@
+ @./download $(SRCDIR)/ooo.lst && touch $@
else
@echo "Automatic fetching of external tarballs is disabled."
endif