diff options
author | Oz Tiram <[email protected]> | 2025-04-03 21:46:54 +0200 |
---|---|---|
committer | Luke from DC <[email protected]> | 2025-04-04 22:19:13 +0000 |
commit | f02f8e2b57a95f908d62e85bb65327060253e0a1 (patch) | |
tree | ebc270ee8a0e3c42e14f51ff26102ebe5f08c1bb | |
parent | f31d79ef3e1cd77d5aa1c62566257aa101c2b283 (diff) | |
download | atril-f02f8e2b57a95f908d62e85bb65327060253e0a1.tar.bz2 atril-f02f8e2b57a95f908d62e85bb65327060253e0a1.tar.xz |
fix: correct dependeny on mate-submodules
Signed-off-by: Oz Tiram <[email protected]>
-rw-r--r-- | meson.build | 1 | ||||
-rw-r--r-- | shell/meson.build | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/meson.build b/meson.build index 5e66eaf3..5da606e4 100644 --- a/meson.build +++ b/meson.build @@ -67,7 +67,6 @@ zlib = dependency('zlib') libsecret = dependency('libsecret-1', version: '>= 0.5', required: get_option('keyring')) gtk_unix_print = dependency('gtk+-unix-print-3.0', version: '>= ' + gtk_version, required: get_option('gtk_unix_print')) mate_desktop = dependency('mate-desktop-2.0') -egg = dependency('libegg') # Backend configuration enabled_backend_names = [] diff --git a/shell/meson.build b/shell/meson.build index 021b04f8..98dfaf52 100644 --- a/shell/meson.build +++ b/shell/meson.build @@ -99,7 +99,7 @@ atril_deps = [ libsecret, math, mate_desktop, - egg, + mate_submodules_dep, libtoolbareditor_dep, libevproperties_dep ] |