This commit is contained in:
Kovid Goyal 2021-05-05 08:39:44 +05:30
commit c735d1f6ac
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -902,7 +902,8 @@ def compile_python(base_path: str) -> None:
def create_linux_bundle_gunk(ddir: str, libdir_name: str) -> None:
if not os.path.exists('docs/_build/html'):
run_tool(['make', 'docs'])
make = "gmake" if is_freebsd else "make"
run_tool([make, 'docs'])
copy_man_pages(ddir)
copy_html_docs(ddir)
icdir = os.path.join(ddir, 'share', 'icons', 'hicolor', '256x256', 'apps')