diff options
Diffstat (limited to 'pactest/pmtest.py')
-rwxr-xr-x | pactest/pmtest.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/pactest/pmtest.py b/pactest/pmtest.py index dd524211..00dd3cbc 100755 --- a/pactest/pmtest.py +++ b/pactest/pmtest.py @@ -192,13 +192,12 @@ class pmtest: cmd.append("libtool gdb --args") if pacman["valgrind"]: cmd.append("valgrind --tool=memcheck --leak-check=full --show-reachable=yes") - cmd.append("%s --config=%s --root=%s --dbpath=%s --cachedir=%s --lock=%s" \ + cmd.append("%s --config=%s --root=%s --dbpath=%s --cachedir=%s" \ % (pacman["bin"], os.path.join(self.root, PACCONF), self.root, os.path.join(self.root, PM_DBPATH), - os.path.join(self.root, PM_CACHEDIR), - os.path.join(self.root, PM_LOCK) )) + os.path.join(self.root, PM_CACHEDIR))) if not pacman["manual-confirm"]: cmd.append("--noconfirm") if pacman["debug"]: |