From 36de95863f193ada8774a854fd03c3eb30879954 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ertu=C4=9Frul=20Erata?= Date: Tue, 1 Mar 2016 13:03:45 +0200 Subject: [PATCH] emul32 check disaled. --- system/base/libpcre/actions.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/system/base/libpcre/actions.py b/system/base/libpcre/actions.py index fcba9002..f8812f8d 100644 --- a/system/base/libpcre/actions.py +++ b/system/base/libpcre/actions.py @@ -25,7 +25,10 @@ def build(): autotools.make() def check(): - autotools.make("-j1 check") + if get.buildTYPE() == "emul32": + pass + else: + autotools.make("-j1 check") def install(): autotools.rawInstall("DESTDIR=%s" % get.installDIR())