From 13e8e77ecfd6af660eb7e2a6431309c4063265ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=2E=C3=87a=C4=9Flar=20Onur?= Date: Thu, 21 Jul 2005 18:54:44 +0000 Subject: [PATCH] =?UTF-8?q?installWithDestdir=20parametre=20als=C4=B1n?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pisi/actionsapi/autotools.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pisi/actionsapi/autotools.py b/pisi/actionsapi/autotools.py index 38c09aec..98560eef 100644 --- a/pisi/actionsapi/autotools.py +++ b/pisi/actionsapi/autotools.py @@ -77,13 +77,13 @@ def installWithPrefix(parameters = ''): os.system(install_string) -def installWithDestdir(): +def installWithDestdir(parameters = ''): dirs = glb.dirs dir_suffix = os.path.dirname(os.path.dirname(os.getcwd())) + \ glb.const.install_dir_suffix - install_string = 'make install DESTDIR=%s' % dir_suffix + install_string = 'make install DESTDIR=%s %s' % (dir_suffix, parameters) os.system(install_string)