diff options
author | Manatsawin Hanmongkolchai <[email protected]> | 2022-11-15 01:18:57 +0700 |
---|---|---|
committer | raveit65 <[email protected]> | 2023-04-20 18:07:49 +0200 |
commit | 8404de12c85b0674f397a616596f85b82b2d7e66 (patch) | |
tree | a5c10385978aa4aae0058275802d17fa5f59b2f4 /data | |
parent | 94abc672375a68425d210bec872167922808391c (diff) | |
download | eom-8404de12c85b0674f397a616596f85b82b2d7e66.tar.bz2 eom-8404de12c85b0674f397a616596f85b82b2d7e66.tar.xz |
Fix plugin installing
Diffstat (limited to 'data')
-rw-r--r-- | data/meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/meson.build b/data/meson.build index 4dbd1e6..06acf52 100644 --- a/data/meson.build +++ b/data/meson.build @@ -13,7 +13,7 @@ if get_option('nls') po_dir: po_dir, ) else - install_data(desktopfile, install_dir: desktopdir) + install_data(desktopfile, install_dir: desktopdir, rename: ['eom.desktop']) endif gnome.post_install(update_desktop_database: true) @@ -30,7 +30,7 @@ if get_option('nls') po_dir: po_dir, ) else - install_data(appdatafile, install_dir: appdatadir) + install_data(appdatafile, install_dir: appdatadir, rename: ['eom.appdata.xml']) endif gsettings_schema = configure_file(input: 'org.mate.eom.gschema.xml.in', configuration: pkg_info, output: 'org.mate.eom.gschema.xml') |