From 72101b100aa33b0b9879f9b18edfdd88c1aa2755 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Thu, 1 Sep 2011 10:24:21 +0100 Subject: [PATCH] debian: Use configured aptitude program instead of just "aptitude". --- febootstrap_debian.ml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/febootstrap_debian.ml b/febootstrap_debian.ml index 06fcbc3..f26df4a 100644 --- a/febootstrap_debian.ml +++ b/febootstrap_debian.ml @@ -48,8 +48,9 @@ let debian_resolve_dependencies_and_download names = (* Download the packages. *) let cmd = - sprintf "umask 0000; cd %s && aptitude download %s" + sprintf "umask 0000; cd %s && %s download %s" (Filename.quote tmpdir) + Config.aptitude (String.concat " " (List.map Filename.quote pkgs)) in run_command cmd; -- 1.8.3.1