diff --git a/system/base/glibc/actions.py b/system/base/glibc/actions.py index d04cf6e7..69e4c100 100644 --- a/system/base/glibc/actions.py +++ b/system/base/glibc/actions.py @@ -93,8 +93,11 @@ def build(): def check(): shelltools.cd("build") - autotools.make("check || true") + if get.buildTYPE() != "emul32": + autotools.make("check || true") + else: + pass def install(): shelltools.cd("build")