aboutsummaryrefslogtreecommitdiff
path: root/bpkg/system-package-manager-debian.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'bpkg/system-package-manager-debian.cxx')
-rw-r--r--bpkg/system-package-manager-debian.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/bpkg/system-package-manager-debian.cxx b/bpkg/system-package-manager-debian.cxx
index ca44658..b06487f 100644
--- a/bpkg/system-package-manager-debian.cxx
+++ b/bpkg/system-package-manager-debian.cxx
@@ -256,7 +256,7 @@ namespace bpkg
try
{
if (apt_cache_path.empty () && !simulate_)
- apt_cache_path = process::path_search (args[0]);
+ apt_cache_path = process::path_search (args[0], false /* init */);
process_env pe (apt_cache_path, evars);
@@ -476,7 +476,7 @@ namespace bpkg
try
{
if (apt_cache_path.empty () && !simulate_)
- apt_cache_path = process::path_search (args[0]);
+ apt_cache_path = process::path_search (args[0], false /* init */);
process_env pe (apt_cache_path, evars);
@@ -749,14 +749,14 @@ namespace bpkg
if (!sudo_.empty ())
{
if (sudo_path.empty () && !simulate_)
- sudo_path = process::path_search (args[0]);
+ sudo_path = process::path_search (args[0], false /* init */);
pp = &sudo_path;
}
else
{
if (apt_get_path.empty () && !simulate_)
- apt_get_path = process::path_search (args[0]);
+ apt_get_path = process::path_search (args[0], false /* init */);
pp = &apt_get_path;
}