0
0
Fork 0
mirror of https://github.com/boltgolt/howdy.git synced 2024-09-12 09:41:18 +02:00

Merge pull request #871 from xiangluoming/beta

fix errors when install_in_site_package in meson.build.
This commit is contained in:
Sayafdine Said 2023-12-23 14:16:31 +01:00 committed by GitHub
commit df60fb1752
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 4 deletions

View file

@ -40,7 +40,6 @@ if get_option('install_in_site_packages')
sources,
py_paths,
subdir: 'howdy-gtk',
install_mode: 'r--r--r--',
install_tag: 'py_sources',
)
else
@ -79,4 +78,4 @@ install_data(
install_mode: 'rwxr-xr-x',
install_dir: get_option('prefix') / get_option('bindir'),
install_tag: 'bin',
)
)

View file

@ -74,7 +74,6 @@ if get_option('install_in_site_packages')
py_sources,
subdir: 'howdy',
preserve_path: true,
install_mode: 'r--r--r--',
install_tag: 'py_sources',
)
else
@ -167,4 +166,4 @@ install_data(
install_mode: 'rwxr-xr-x',
install_dir: get_option('bindir'),
install_tag: 'bin',
)
)