Makefile.fetch |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 3c15edaed5b11e13843081d22ef637f03a7c8d73
Author: Tor Lillqvist <tlillqv...@suse.com>
Date:   Wed Jul 24 20:44:52 2013 +0300

    Ignore error in mkdir -p
    
    It can fail in some cases on Cygwin even if nothing is wrong.
    
    Change-Id: I5714f79f0d8182ff89826286138264d28be805c4

diff --git a/Makefile.fetch b/Makefile.fetch
index 815ac23..2ea9ac8 100644
--- a/Makefile.fetch
+++ b/Makefile.fetch
@@ -71,7 +71,7 @@ endef
 download: $(WORKDIR)/download
 
 $(WORKDIR)/download: $(BUILDDIR)/config_host.mk $(SRCDIR)/download.lst 
$(SRCDIR)/Makefile.fetch
-       @mkdir -p $(TARFILE_LOCATION)/tmp
+       -@mkdir -p $(TARFILE_LOCATION)/tmp
        @date >> $(fetch_LOGFILE)
        $(foreach item, \
                $(call fetch_Optional,LIBATOMIC_OPS,LIBATOMIC_OPS_TARBALL) \
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to