[Libreoffice-commits] online.git: loleaflet/Makefile.am

Christian Glombek christian.glombek at rwth-aachen.de
Sat Sep 2 23:30:45 UTC 2017


 loleaflet/Makefile.am |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b61bcd2e5381b9cc9615a2c7b1267620a58b3898
Author: Christian Glombek <christian.glombek at rwth-aachen.de>
Date:   Fri Aug 25 09:08:13 2017 +0200

    Fix build from non-git source archives like tar or zip
    
    Change-Id: I359056c9ad2550b625eb3e7b8e71d841eedea93b
    Reviewed-on: https://gerrit.libreoffice.org/41553
    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 be4678fe..aa0492f0 100644
--- a/loleaflet/Makefile.am
+++ b/loleaflet/Makefile.am
@@ -14,7 +14,7 @@ L10N_JSON = $(patsubst po/%.po,dist/l10n/%.json,$(L10N_PO))
 L10N_STYLES_PO = $(wildcard po/styles/*.po)
 L10N_STYLES_JSON = $(patsubst po/styles/%.po,dist/l10n/styles/%.json,$(L10N_STYLES_PO))
 
-EXTRA_DIST = $(shell git ls-files)
+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)


More information about the Libreoffice-commits mailing list