[Libreoffice-commits] online.git: loleaflet/Makefile.am
Samuel Mehrbrodt
Samuel.Mehrbrodt at cib.de
Wed Jan 31 09:24:32 UTC 2018
loleaflet/Makefile.am | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
New commits:
commit 3ae85e20a66ac3871b3ebbbd36bfc8730d620124
Author: Samuel Mehrbrodt <Samuel.Mehrbrodt at cib.de>
Date: Tue Jan 30 14:54:42 2018 +0100
Ignore errors when draw directory is not deletable
Change-Id: Iec3567129f96b69174421ca1ec652dccf6a6b56c
Reviewed-on: https://gerrit.libreoffice.org/48911
Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt at cib.de>
Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt at cib.de>
diff --git a/loleaflet/Makefile.am b/loleaflet/Makefile.am
index 495cd47d..3f79dd3d 100644
--- a/loleaflet/Makefile.am
+++ b/loleaflet/Makefile.am
@@ -19,7 +19,8 @@ EXTRA_DIST = $(shell find . -type f -not -path './.git/*' | sed 's/.\///')
all-local: node_modules $(L10N_JSON) $(JQUERY_UI_DIST_IMAGES)
$(abs_top_srcdir)/scripts/unocommands.py --check $(abs_top_srcdir)
- rm -rf dist/plugins/draw-$(DRAW_VERSION) && mkdir -p dist/plugins/draw-$(DRAW_VERSION)
+ rm -rf dist/plugins/draw-$(DRAW_VERSION) || true
+ mkdir -p dist/plugins/draw-$(DRAW_VERSION)
cd plugins/draw-$(DRAW_VERSION) && jake build && cp -ar dist ../../dist/plugins/draw-$(DRAW_VERSION)
jake build debug=$(ENABLE_DEBUG) minify=$(MINIFY)
More information about the Libreoffice-commits
mailing list