summaryrefslogtreecommitdiff
path: root/src/backend/install.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/install.py')
-rw-r--r--src/backend/install.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/install.py b/src/backend/install.py
index 1316c22..5f89b01 100644
--- a/src/backend/install.py
+++ b/src/backend/install.py
@@ -19,7 +19,7 @@ import sisyphus.update
def start(pkgname):
if sisyphus.checkenv.root():
sisyphus.update.start()
- sisyphus.solvedeps.pkg(pkgname)
+ sisyphus.solvedeps.start(pkgname)
bin_list, src_list, need_cfg = pickle.load(
open(os.path.join(sisyphus.getfs.p_mtd_dir, "sisyphus_pkgdeps.pickle"), "rb"))
@@ -73,7 +73,7 @@ def start(pkgname):
def estart(pkgname):
if sisyphus.checkenv.root():
sisyphus.update.start()
- sisyphus.solvedeps.pkg(pkgname)
+ sisyphus.solvedeps.start(pkgname)
bin_list, src_list, need_cfg = pickle.load(
open(os.path.join(sisyphus.getfs.p_mtd_dir, "sisyphus_pkgdeps.pickle"), "rb"))
@@ -165,7 +165,7 @@ def estart(pkgname):
def xstart(pkgname):
- sisyphus.solvedeps.pkg.__wrapped__(pkgname) # undecorate
+ sisyphus.solvedeps.start.__wrapped__(pkgname) # undecorate
bin_list, src_list, need_cfg = pickle.load(
open(os.path.join(sisyphus.getfs.p_mtd_dir, "sisyphus_pkgdeps.pickle"), "rb"))