Skip to content

Commit

Permalink
Merge pull request #839 from Gliese852/source-subdirs
Browse files Browse the repository at this point in the history
Use subdirs for 'py_sources_dir' too
  • Loading branch information
musikid committed Sep 24, 2023
2 parents 95df4d2 + 47e5a3b commit c5b1766
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion howdy-gtk/meson.build
Expand Up @@ -32,7 +32,7 @@ py.dependency()
if get_option('install_in_site_packages')
pysourcesinstalldir = join_paths(py.get_install_dir(), 'howdy-gtk')
else
pysourcesinstalldir = get_option('py_sources_dir') != '' ? get_option('py_sources_dir') : join_paths(get_option('prefix'), get_option('libdir'), 'howdy-gtk')
pysourcesinstalldir = get_option('py_sources_dir') != '' ? get_option('py_sources_dir') / 'howdy-gtk' : join_paths(get_option('prefix'), get_option('libdir'), 'howdy-gtk')
endif

if get_option('install_in_site_packages')
Expand Down
2 changes: 1 addition & 1 deletion howdy/src/meson.build
Expand Up @@ -46,7 +46,7 @@ py_sources = [
if get_option('install_in_site_packages')
pysourcesinstalldir = join_paths(py.get_install_dir(), 'howdy')
else
pysourcesinstalldir = get_option('py_sources_dir') != '' ? get_option('py_sources_dir') : join_paths(get_option('prefix'), get_option('libdir'), 'howdy')
pysourcesinstalldir = get_option('py_sources_dir') != '' ? get_option('py_sources_dir') / 'howdy' : join_paths(get_option('prefix'), get_option('libdir'), 'howdy')
endif

pam_module_conf_data = configuration_data(paths_dict)
Expand Down

0 comments on commit c5b1766

Please sign in to comment.