diff --git a/src/pisi/actionsapi/autotools.py b/src/pisi/actionsapi/autotools.py index 6da2dc8b..a009e89c 100644 --- a/src/pisi/actionsapi/autotools.py +++ b/src/pisi/actionsapi/autotools.py @@ -33,4 +33,5 @@ def install(): sysconfdir={D}/etc \ install' - os.system( install_string.replace( '{D}', os.path.dirname( os.path.dirname( os.getcwd())) + '/image' )) + # FIXME: need to get install directory from pisi.config... + os.system( install_string.replace( '{D}', os.path.dirname( os.path.dirname( os.getcwd())) + '/install' ))