From d9591ac611c5a110476de94c0f65d3ea35a8ff10 Mon Sep 17 00:00:00 2001 From: suvari Date: Wed, 11 Dec 2019 20:15:07 +0300 Subject: [PATCH] libunistring: fix test --- system/base/libunistring/actions.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/system/base/libunistring/actions.py b/system/base/libunistring/actions.py index f23378c5..19d9c5ca 100644 --- a/system/base/libunistring/actions.py +++ b/system/base/libunistring/actions.py @@ -6,11 +6,13 @@ from pisi.actionsapi import autotools from pisi.actionsapi import pisitools +from pisi.actionsapi import shelltools def setup(): autotools.autoreconf("-vfi") autotools.configure("--disable-static \ --disable-rpath") + shelltools.system("sed -i '/pragma weak pthread_create/d' tests/glthread/thread.h") def build(): autotools.make()