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

fix errors when install_in_site_package in meson.build.

According to https://github.com/mesonbuild/meson/issues/12601 ,
py.install_sources shouldn't use install_mode.
This commit is contained in:
xiangluoming 2023-12-20 13:24:39 +08:00
parent c5b17665d5
commit 458d8f59a4
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',
)
)