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")