[Libreoffice-commits] online.git: Branch 'libreoffice-5-4' - loleaflet/Makefile.am
Samuel Mehrbrodt
Samuel.Mehrbrodt at cib.de
Thu Feb 1 11:19:18 UTC 2018
loleaflet/Makefile.am | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
New commits:
commit 26ad0a123a9b024066808c4b7d7144b02de39886
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
(cherry picked from commit 4f38ff9cc8a53c498ce2de2ceaa7d635120d4034)
Reviewed-on: https://gerrit.libreoffice.org/48910
Reviewed-by: Thorsten Behrens <Thorsten.Behrens at CIB.de>
Tested-by: Thorsten Behrens <Thorsten.Behrens at CIB.de>
diff --git a/loleaflet/Makefile.am b/loleaflet/Makefile.am
index aa0492f0..9b34f78d 100644
--- a/loleaflet/Makefile.am
+++ b/loleaflet/Makefile.am
@@ -17,7 +17,8 @@ L10N_STYLES_JSON = $(patsubst po/styles/%.po,dist/l10n/styles/%.json,$(L10N_STYL
EXTRA_DIST = $(shell find . -type f -not -path './.git/*' | sed 's/.\///')
all-local: node_modules $(L10N_JSON) $(L10N_STYLES_JSON)
- 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