Consistently use '_dir' suffix for meson directory variables

This commit is contained in:
Michael Gratton 2019-09-27 23:55:32 +10:00
parent 64f14b4a78
commit f5f9350d2f
4 changed files with 25 additions and 20 deletions

View file

@ -27,5 +27,5 @@ sql_files = [
]
install_data(sql_files,
install_dir: join_paths(datadir, meson.project_name(), 'sql')
install_dir: join_paths(data_dir, meson.project_name(), 'sql')
)