[Pkg-libvirt-commits] [libguestfs] 25/233: 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:43 UTC 2014
This is an automated email from the git hooks/post-receive script.
bengen pushed a commit to branch experimental
in repository libguestfs.
commit 39bc959c5b3a972e9a12921e002f27aaab2cd5ff
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.
---
builder/cmdline.ml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/builder/cmdline.ml b/builder/cmdline.ml
index 99412bb..813fbd8 100644
--- a/builder/cmdline.ml
+++ b/builder/cmdline.ml
@@ -311,7 +311,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 memsize = !memsize in
let mkdirs = List.rev !mkdirs 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