Skip to content

Commit

Permalink
entropy/portage: Fix missing 'comma' in meson.install_data ()
Browse files Browse the repository at this point in the history
  • Loading branch information
sidt4 committed Aug 23, 2024
1 parent f5ebe41 commit 9f0640d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backends/entropy/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ shared_module(

install_data(
'entropyBackend.py',
install_dir: join_paths(get_option('datadir'), 'PackageKit', 'helpers', 'entropy')
install_dir: join_paths(get_option('datadir'), 'PackageKit', 'helpers', 'entropy'),
install_mode: 'rwxr--r--'
)
2 changes: 1 addition & 1 deletion backends/portage/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ shared_module(

install_data(
'portageBackend.py',
install_dir: join_paths(get_option('datadir'), 'PackageKit', 'helpers', 'portage')
install_dir: join_paths(get_option('datadir'), 'PackageKit', 'helpers', 'portage'),
install_mode: 'rwxr--r--'
)

0 comments on commit 9f0640d

Please sign in to comment.