Skip to content

Commit df60fb1

Browse files
authored
Merge pull request #871 from xiangluoming/beta
fix errors when install_in_site_package in meson.build.
2 parents c5b1766 + 458d8f5 commit df60fb1

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

howdy-gtk/meson.build

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ if get_option('install_in_site_packages')
4040
sources,
4141
py_paths,
4242
subdir: 'howdy-gtk',
43-
install_mode: 'r--r--r--',
4443
install_tag: 'py_sources',
4544
)
4645
else
@@ -79,4 +78,4 @@ install_data(
7978
install_mode: 'rwxr-xr-x',
8079
install_dir: get_option('prefix') / get_option('bindir'),
8180
install_tag: 'bin',
82-
)
81+
)

howdy/src/meson.build

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ if get_option('install_in_site_packages')
7474
py_sources,
7575
subdir: 'howdy',
7676
preserve_path: true,
77-
install_mode: 'r--r--r--',
7877
install_tag: 'py_sources',
7978
)
8079
else
@@ -167,4 +166,4 @@ install_data(
167166
install_mode: 'rwxr-xr-x',
168167
install_dir: get_option('bindir'),
169168
install_tag: 'bin',
170-
)
169+
)

0 commit comments

Comments
 (0)