From 2a7039c8b2240c19b81b51956241d64bc81f1d85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=2E=C3=87a=C4=9Flar=20Onur?= Date: Mon, 25 Jul 2005 21:58:36 +0000 Subject: [PATCH] rawInstall eklendi --- pisi/actionsapi/autotools.py | 3 +++ 1 file changed, 3 insertions(+) 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)