Skip to content

Commit

Permalink
Still not activatable, but now with timeout error
Browse files Browse the repository at this point in the history
  • Loading branch information
rdbende committed Dec 29, 2023
1 parent e46d8dd commit fb31dc8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions data/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,18 @@ if desktop_utils.found()
test('Validate desktop file', desktop_utils, args: [desktop_file])
endif

servicedir = get_option('prefix') / get_option('datadir') / 'dbus-1' / 'services'

service_conf = configuration_data()
service_conf.set('bindir', servicedir)
service_conf.set('prefix', get_option('prefix'))
service_conf.set('bindir', get_option('bindir'))

configure_file(
input: 'org.freedesktop.FileManager1.service.in',
output: 'org.freedesktop.FileManager1.service',
configuration: service_conf,
install_dir: servicedir
install_dir: join_paths(get_option('datadir'), 'dbus-1', 'services')
)


appstream_file = i18n.merge_file(
input: configure_file(
input: 'hu.kramo.Hyperplane.metainfo.xml.in',
Expand Down
2 changes: 1 addition & 1 deletion data/org.freedesktop.FileManager1.service.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[D-BUS Service]
Name=org.freedesktop.FileManager1
Exec=@bindir@/hyperplane --gapplication-service
Exec=@prefix@/@bindir@/hyperplane --gapplication-service

0 comments on commit fb31dc8

Please sign in to comment.