diff options
author | rbuj <[email protected]> | 2021-01-26 13:08:32 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-02-04 22:46:51 +0100 |
commit | 97e1fe87f7cb362e0731b4aceec5b8f21e5632d1 (patch) | |
tree | 5feb76d92b71af6159d77f383e4a9851b215219f /plugins/pythonconsole/Makefile.am | |
parent | 299d0088a38a465c9de2ef890cecba9bd7a2b0f5 (diff) | |
download | pluma-97e1fe87f7cb362e0731b4aceec5b8f21e5632d1.tar.bz2 pluma-97e1fe87f7cb362e0731b4aceec5b8f21e5632d1.tar.xz |
build: Use PACKAGE_URL variable
Diffstat (limited to 'plugins/pythonconsole/Makefile.am')
-rw-r--r-- | plugins/pythonconsole/Makefile.am | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/plugins/pythonconsole/Makefile.am b/plugins/pythonconsole/Makefile.am index 7c6a02e4..006589ea 100644 --- a/plugins/pythonconsole/Makefile.am +++ b/plugins/pythonconsole/Makefile.am @@ -2,8 +2,9 @@ SUBDIRS = pythonconsole plugindir = $(PLUMA_PLUGINS_LIBS_DIR) -plugin_in_files = pythonconsole.plugin.desktop.in -plugin_DATA = $(plugin_in_files:.plugin.desktop.in=.plugin) +plugin_DATA = pythonconsole.plugin +plugin_in_files = $(plugin_DATA:.plugin=.plugin.desktop.in) +plugin_in_in_files = $(plugin_in_files:.plugin.desktop.in=.plugin.desktop.in.in) $(plugin_DATA): $(plugin_in_files) $(AM_V_GEN) $(MSGFMT) --keyword=Name --keyword=Description --desktop --template $< -d $(top_srcdir)/po -o $@ @@ -13,16 +14,16 @@ gsettings_SCHEMAS = $(pythonconsole_gschema_in:.xml.in=.xml) @GSETTINGS_RULES@ EXTRA_DIST = \ - $(plugin_in_files) \ + $(plugin_in_in_files) \ $(pythonconsole_gschema_in) CLEANFILES = \ - $(plugin_DATA) \ + $(plugin_DATA) \ $(gsettings_SCHEMAS_in) \ $(gsettings_SCHEMAS) DISTCLEANFILES = \ - $(plugin_DATA) \ + $(plugin_in_files) \ $(gsettings_SCHEMAS_in) \ $(gsettings_SCHEMAS) |