Fix: broken build-packages.sh (#251)

Previous commit changed the locations of certain documentation files
causing the meson build to fail.
This commit is contained in:
Tommi Jalkanen
2021-06-03 21:43:09 +02:00
committed by GitHub
parent a128790112
commit f23419994d
+1 -3
View File
@@ -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'