Kaydet (Commit) 38616177 authored tarafından Tor Lillqvist's avatar Tor Lillqvist Kaydeden (comit) Tor Lillqvist

On Cygwin, Make wants to see Unix-style pathnames

üst cd2644df
...@@ -365,11 +365,17 @@ endif ...@@ -365,11 +365,17 @@ endif
# #
# Bootstap # Bootstap
# #
$(WORKDIR)/bootstrap: ifeq ($(OS_FOR_BUILD),WNT)
WORKDIR_BOOTSTRAP=$(shell cygpath -u $(WORKDIR))/bootstrap
else
WORKDIR_BOOTSTRAP=$(WORKDIR)/bootstrap
endif
$(WORKDIR_BOOTSTRAP):
@cd $(SRCDIR) && ./bootstrap @cd $(SRCDIR) && ./bootstrap
@mkdir -p $(dir $@) && touch $@ @mkdir -p $(dir $@) && touch $@
bootstrap: $(WORKDIR)/bootstrap bootstrap: $(WORKDIR_BOOTSTRAP)
# #
# Build # Build
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment