1 --- a/libdeja/duplicity/DuplicityInstance.vala
2 +++ b/libdeja/duplicity/DuplicityInstance.vala
3 @@ -114,8 +114,8 @@ internal class DuplicityInstance : Object
4 // We already are pretty sure we don't have other duplicities in our
5 // archive directories, because we use our own and we ensure we only have
6 // one deja-dup running at a time via DBus.
7 var lockfile_glob = Shell.quote(cache_dir) + "/*/lockfile.lock";
8 - if (Posix.system("/bin/rm -f " + lockfile_glob) != 0)
9 + if (Posix.system("@coreutils@/bin/rm -f " + lockfile_glob) != 0)
10 warning("Could not delete '%s'", lockfile_glob);
12 Process.spawn_async_with_pipes(null, real_argv, real_envp,
13 SpawnFlags.SEARCH_PATH |