Skip to content

Commit

Permalink
meson: solved prefix error
Browse files Browse the repository at this point in the history
Desktop and icon files prefixes was hardcoded.

@fix
  • Loading branch information
dimmus committed Oct 26, 2023
1 parent 2c8480b commit 411dc54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions data/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ subdir('themes')

install_data(
sources : 'eflete.desktop',
install_dir : '/usr/local/share/applications'
install_dir : join_paths(dir_data, 'applications')
)

install_data(
sources : 'images/eflete.svg',
install_dir : '/usr/local/share/icons'
install_dir : join_paths(dir_data, 'icons')
)

0 comments on commit 411dc54

Please sign in to comment.