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)