diff options
author | Martin Wimpress <[email protected]> | 2015-06-16 22:32:51 +0100 |
---|---|---|
committer | Martin Wimpress <[email protected]> | 2015-06-16 22:32:51 +0100 |
commit | 6b14b69dc0e387eaf3c24c1b9d68fe4b3982bddb (patch) | |
tree | 79c0e89702838655454a395b30dd518190df5087 | |
parent | f6addc421a2dc87d02477b88b4828dadf3a9ade3 (diff) | |
parent | 155723520651278dcd9d171c0156c87f542f1906 (diff) | |
download | pluma-6b14b69dc0e387eaf3c24c1b9d68fe4b3982bddb.tar.bz2 pluma-6b14b69dc0e387eaf3c24c1b9d68fe4b3982bddb.tar.xz |
Merge pull request #121 from monsta/patch-1
taglist plugin: don't use timestamps when using gzip
-rwxr-xr-x | plugins/taglist/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/taglist/Makefile.am b/plugins/taglist/Makefile.am index fcc18345..2b85c58a 100755 --- a/plugins/taglist/Makefile.am +++ b/plugins/taglist/Makefile.am @@ -39,7 +39,7 @@ GZIP_ENV = -9 %.tags.gz: %.tags.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) LC_ALL=C $(INTLTOOL_MERGE) $(top_srcdir)/po $< $(@:.gz=) -x -u -c $(top_builddir)/po/.intltool-merge-cache - GZIP=$(GZIP_ENV) gzip -f $(@:.gz=) + GZIP=$(GZIP_ENV) gzip -n -f $(@:.gz=) plugin_DATA = $(plugin_in_files:.pluma-plugin.desktop.in=.pluma-plugin) |