From: Richard W.M. Jones Date: Thu, 1 Sep 2011 09:24:21 +0000 (+0100) Subject: debian: Use configured aptitude program instead of just "aptitude". X-Git-Tag: 3.10~4 X-Git-Url: http://git.annexia.org/?a=commitdiff_plain;h=72101b100aa33b0b9879f9b18edfdd88c1aa2755;p=febootstrap.git debian: Use configured aptitude program instead of just "aptitude". --- 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;