You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: scripts/build_dependencies.sh
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -71,6 +71,8 @@ check_env () {
71
71
python_module_test pyparsing >/dev/null 2>&1|| { echo>&2"${RED}'pyparsing' not found in your Python 3 installation.${NC}";exit 1; }
72
72
python_module_test distutils >/dev/null 2>&1|| { echo>&2"${RED}'setuptools' not found in your Python 3 installation.${NC}";exit 1; }
73
73
python_module_test yaml >/dev/null 2>&1|| { echo>&2"${RED}'pyyaml' not found in your Python 3 installation.${NC}";exit 1; }
74
+
python_module_test distlib >/dev/null 2>&1|| { echo>&2"${RED}'distlib' not found in your Python 3 installation.${NC}";exit 1; }
75
+
python_module_test mako >/dev/null 2>&1|| { echo>&2"${RED}'mako' not found in your Python 3 installation.${NC}";exit 1; }
74
76
command -v meson >/dev/null 2>&1|| { echo>&2"${RED}You must install 'meson' on your host machine.${NC}";exit 1; }
75
77
command -v cmake >/dev/null 2>&1|| { echo>&2"${RED}You must install 'cmake' on your host machine.${NC}";exit 1; }
76
78
command -v msgfmt >/dev/null 2>&1|| { echo>&2"${RED}You must install 'gettext' on your host machine.\n\t'msgfmt' needs to be in your \$PATH as well.${NC}";exit 1; }
0 commit comments