diff --git a/pisi/actionsapi/autotools.py b/pisi/actionsapi/autotools.py index 8f1726e8..11d5c564 100644 --- a/pisi/actionsapi/autotools.py +++ b/pisi/actionsapi/autotools.py @@ -109,6 +109,9 @@ def installWithInstallRootdir(): os.system(install_string) +def rawInstall(parameters = ''): + os.system("make %s install" % parameters) + def aclocal(parameters = ''): os.system("aclocal %s" % parameters)