File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ gettext_package = meson.project_name()
15
15
prefix = get_option (' prefix' )
16
16
datadir = join_paths (prefix, get_option (' datadir' ))
17
17
sysconfdir = join_paths (prefix, get_option (' sysconfdir' ))
18
+ libexecdir = join_paths (prefix, get_option (' libexecdir' ))
18
19
# Dependencies
19
20
20
21
glib_dep = dependency (' glib-2.0' , version : glib_version)
Original file line number Diff line number Diff line change @@ -27,13 +27,13 @@ executable('polkit-mate-authentication-agent-1',
27
27
include_directories : config_inc,
28
28
c_args : c_args + [' -DPOLKIT_AGENT_I_KNOW_API_IS_SUBJECT_TO_CHANGE' ] + [' -DHAVE_CONFIG_H' ],
29
29
install : true ,
30
- install_dir : get_option ( ' libexecdir' )
30
+ install_dir : libexecdir
31
31
)
32
32
33
33
# .desktop file
34
34
35
35
desktop_data = configuration_data ()
36
- desktop_data.set(' FULL_LIBEXECDIR' , get_option ( ' libexecdir' ) )
36
+ desktop_data.set(' FULL_LIBEXECDIR' , libexecdir)
37
37
desktop_in_file = configure_file (
38
38
input : ' polkit-mate-authentication-agent-1.desktop.in.in' ,
39
39
output : ' polkit-mate-authentication-agent-1.desktop.in' ,
You can’t perform that action at this time.
0 commit comments