[Pkg-libvirt-commits] [libguestfs] 21/87: builder: List --install packages in the same order as on the command line.

Hilko Bengen bengen at moszumanska.debian.org
Wed Feb 19 21:10:06 UTC 2014


This is an automated email from the git hooks/post-receive script.

bengen pushed a commit to branch debian
in repository libguestfs.

commit 965b414afbcbd632482127138e5de7ddc34a8d38
Author: Richard W.M. Jones <rjones at redhat.com>
Date:   Fri Jan 10 17:04:28 2014 +0000

    builder: List --install packages in the same order as on the command line.
    
    Previously the list was reversed.  Note this doesn't have any effect
    on how the packages are installed since the guest package manager
    doesn't care about the order.
    
    (cherry picked from commit 39bc959c5b3a972e9a12921e002f27aaab2cd5ff)
---
 builder/cmdline.ml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/builder/cmdline.ml b/builder/cmdline.ml
index b1fb003..7bbde70 100644
--- a/builder/cmdline.ml
+++ b/builder/cmdline.ml
@@ -276,7 +276,7 @@ read the man page virt-builder(1).
   let format = match !format with "" -> None | s -> Some s in
   let gpg = !gpg in
   let hostname = !hostname in
-  let install = !install in
+  let install = List.rev !install in
   let list_long = !list_long in
   let network = !network in
   let output = match !output with "" -> None | s -> Some s in

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-libvirt/libguestfs.git



More information about the Pkg-libvirt-commits mailing list