And we have frozen builds working with kitty-tool

This commit is contained in:
Kovid Goyal
2022-08-16 23:39:36 +05:30
parent 1c7d6f8bc6
commit e9e7b97c48
4 changed files with 20 additions and 3 deletions

View File

@@ -171,6 +171,7 @@ class Freeze(object):
self.add_misc_libraries()
self.freeze_python()
self.add_ca_certs()
self.build_frozen_tools()
if not self.dont_strip:
self.strip_files()
if not self.skip_tests:
@@ -378,6 +379,10 @@ class Freeze(object):
if f.endswith('.so') or f.endswith('.dylib'):
self.fix_dependencies_in_lib(f)
@flush
def build_frozen_tools(self):
iv['build_frozen_tools'](join(self.contents_dir, 'MacOS', 'kitty'))
@flush
def add_site_packages(self):
print('\nAdding site-packages')