From f23419994d8fd46c7efcfa89b378c720517286f7 Mon Sep 17 00:00:00 2001 From: Tommi Jalkanen <1162417+Koura@users.noreply.github.com> Date: Thu, 3 Jun 2021 22:43:09 +0300 Subject: [PATCH] Fix: broken build-packages.sh (#251) Previous commit changed the locations of certain documentation files causing the meson build to fail. --- meson.build | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/meson.build b/meson.build index 5a218df7..b6ab050d 100644 --- a/meson.build +++ b/meson.build @@ -32,9 +32,7 @@ foreach data_module : ['core', 'fonts', 'plugins', 'colors'] install_subdir('data' / data_module , install_dir : lite_datadir) endforeach -foreach file : ['usage.md', 'licenses.md', 'contributors.md', 'default-keymap.md'] - install_data('doc' / file, install_dir : lite_docdir) -endforeach +install_data('licenses/licenses.md', install_dir : lite_docdir) lite_link_args = [] if cc.get_id() == 'gcc' and get_option('buildtype') == 'release'