mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-05-07 14:44:01 +00:00
Check for python module dependencies when building the Linphone Python module.
This commit is contained in:
parent
5a48597e84
commit
18b24e5de0
2 changed files with 4 additions and 1 deletions
|
|
@ -131,6 +131,8 @@ class DesktopPreparator(prepare.Preparator):
|
|||
graphviz_prog = 'graphviz'
|
||||
ret |= not self.check_is_installed('doxygen', doxygen_prog)
|
||||
ret |= not self.check_is_installed('dot', graphviz_prog)
|
||||
ret |= not self.check_python_module_is_present('pystache')
|
||||
ret |= not self.check_python_module_is_present('wheel')
|
||||
return ret
|
||||
|
||||
def show_missing_dependencies(self):
|
||||
|
|
@ -198,6 +200,7 @@ def main():
|
|||
preparator.parse_args()
|
||||
if preparator.check_tools() != 0:
|
||||
preparator.show_missing_dependencies()
|
||||
preparator.show_missing_python_dependencies()
|
||||
return 1
|
||||
return preparator.run()
|
||||
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit 08520b0ccb2628de41dde919b191415cac554f1d
|
||||
Subproject commit 052449d1f2e52994ff88a8dcd7d13fa8981f6a00
|
||||
Loading…
Add table
Reference in a new issue