From 427aaae4380b4d61db6633da8846a778178c0c0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ertu=C4=9Frul=20Erata?= Date: Sun, 20 Mar 2016 10:47:02 +0200 Subject: [PATCH] check disabledi in emul32 --- system/base/glibc/actions.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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")