From ab47acc57cc3c36601b8b6e9ea335c31463c89cf Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Tue, 6 Aug 2019 00:30:14 +0200 Subject: [PATCH] Makefile: don't install mambabase translations if withkde3tools is disabled --- Makefile | 2 ++ VERSION | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 46891d3..e3bab86 100644 --- a/Makefile +++ b/Makefile @@ -133,6 +133,7 @@ dist-update: $(pck_infiles:.in=) locales: $(pck_catalogs:.po=.mo) $(pck_catalogs1:.po=.mo) install-locales: locales +ifeq ($(WITHKDE3TOOLS),1) @for f in $(pck_catalogs); do\ lang=`echo $$f | sed 's,.*/\(.*\)\.po,\1,'`;\ echo "installing i18n file for language \`$$lang'...";\ @@ -140,6 +141,7 @@ install-locales: locales $(INSTALL_DIR) $$dir;\ $(INSTALL_DATA) $${f/.po/.mo} $$dir/mambabase.mo;\ done +endif @for f in $(pck_catalogs1); do\ lang=`echo $$f | sed 's,.*/\(.*\)\.po,\1,'`;\ echo "installing i18n file for language \`$$lang'...";\ diff --git a/VERSION b/VERSION index fec2fad..a05937b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -VERSION = 4.94.0 +VERSION = 4.94.1