diff options
author | rbuj <[email protected]> | 2021-01-17 14:26:09 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-02-02 18:52:27 +0100 |
commit | a2a2bd88e2c8c286918a30f0dfdf94ac0ede67f5 (patch) | |
tree | fb4dd3d17bcf0f944fb3684c75909dbcc9e4b392 /data | |
parent | 08f0909dc7d3e94189ba6e8259ca8ea3e277800b (diff) | |
download | caja-a2a2bd88e2c8c286918a30f0dfdf94ac0ede67f5.tar.bz2 caja-a2a2bd88e2c8c286918a30f0dfdf94ac0ede67f5.tar.xz |
i18n: Fix fetching all keywords on desktop files
Diffstat (limited to 'data')
-rw-r--r-- | data/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/data/Makefile.am b/data/Makefile.am index cde6a0e4..e0a42fa5 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -19,11 +19,11 @@ desktop_DATA = \ desktop_in_files = $(desktop_DATA:.desktop=.desktop.in) desktop_in_in_files = $(desktop_DATA:.desktop=.desktop.in.in) %.desktop.in: %.desktop.in.in + $(AM_V_GEN) sed -e 's|@bindir[@]|$(bindir)|g' $< > $@ +%.desktop: %.desktop.in $(AM_V_GEN) GETTEXTDATADIR=$(top_srcdir) $(MSGFMT) --desktop \ - --keyword --keyword=Name --keyword=GenericName --keyword=Comment --keyword=Keywords \ + --keyword= --keyword=Name --keyword=GenericName --keyword=Comment --keyword=Keywords \ --template $< -d $(top_srcdir)/po -o $@ -%.desktop: %.desktop.in - $(AM_V_GEN) sed -e 's|@bindir[@]|$(bindir)|g' $< > $@ mimedir = $(datadir)/mime/packages mime_DATA = $(xml_files) |