From e55cde128f8c4e977891210c14ed200475f1e6ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ertu=C4=9Frul=20Erata?= Date: Wed, 18 Jul 2018 06:52:19 +0300 Subject: [PATCH] patch rebuild --- system/devel/patch/actions.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/system/devel/patch/actions.py b/system/devel/patch/actions.py index c17089fc..1745aa07 100644 --- a/system/devel/patch/actions.py +++ b/system/devel/patch/actions.py @@ -9,11 +9,12 @@ from pisi.actionsapi import get def setup(): #autotools.autoreconf("-vfi") - autotools.configure() + autotools.configure("--prefix=/usr") def build(): - autotools.make('LDFLAGS="%s"' % get.LDFLAGS()) - + #autotools.make('LDFLAGS="%s"' % get.LDFLAGS()) + autotools.make() + def check(): autotools.make("check")