From b451fde8bfce878a9cf296c5eca55842e884139e Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Mon, 25 Jun 2018 21:02:38 -0400 Subject: include symbols in release archive --- Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 250a9c5b..3a150e5c 100644 --- a/Makefile +++ b/Makefile @@ -10,6 +10,7 @@ dist: distclean locales cp inx/*.inx dist cp -a images/examples dist/inkstitch cp -a palettes dist/inkstitch + cp -a symbols dist/inkstitch mkdir -p dist/inkstitch/bin/locales cp -a locales/* dist/inkstitch/bin/locales cp -a print dist/inkstitch/bin/ -- cgit v1.3.1 From aada6970b5509adf70f20418fa81d907a8cbf3d4 Mon Sep 17 00:00:00 2001 From: AkiraNorthstar Date: Thu, 19 Jul 2018 14:45:34 +0200 Subject: Update Makefile [ci skip] replace --no-location with --add-location=full (if --add-location not given it is "full" by default) replace multiple --add-comments to one option add --sort-by-file sort output by file location - default False write out option -s to --strip-comments --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 3a150e5c..326af11e 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,7 @@ distclean: messages.po: rm -f messages.po - pybabel extract -o messages.po -F babel.conf --no-location --add-comments l10n --add-comments L10n --add-comments L10N -s . + pybabel extract -o messages.po -F babel.conf --add-location=full --add-comments=l10n,L10n,L10N --sort-by-file --strip-comments . .PHONY: messages.po .PHONY: locales -- cgit v1.3.1