search for: d54b391

Displaying 3 results from an estimated 3 matches for "d54b391".

Did you mean: 54391
2019 Aug 30
0
[p2v PATCH 3/3] build: require List::MoreUtils
...ed by the generate-p2v-config.pl build script, so make sure to error out earlier when this Perl module is not found. Followup of commit 2ac0713900dc60d9f0fbb8e5234ee41254f03e84. --- m4/p2v-progs.m4 | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/m4/p2v-progs.m4 b/m4/p2v-progs.m4 index d54b391..b3d0ce7 100644 --- a/m4/p2v-progs.m4 +++ b/m4/p2v-progs.m4 @@ -58,6 +58,14 @@ else AC_MSG_RESULT([yes]) fi +dnl Check for List::MoreUtils, used by generate-p2v-config.pl +AC_MSG_CHECKING([for List::MoreUtils]) +if ! $PERL -MList::MoreUtils -e1 >&AS_MESSAGE_LOG_FD 2>&1; then +...
2019 Aug 30
4
[p2v PATCH 0/3] Small build fixes
This series for virt-p2v removes the usage of GTK deprecated stuff, and checks for a required Perl module used during build. Tested on: - RHEL 6 (GTK 2) - RHEL 7 (GTK 3) - Fedora 30 (GTK 2 & 3) - Fedora Rawhide/32 (GTK 2 & 3) Pino Toscano (3): Copy GtkAttachOptions from GTK >= 3.4 build: disable deprecated GTK stuff build: require List::MoreUtils Makefile.am | 1 +
2019 Jul 09
7
[PATCH 0/5] Split virt-p2v in own repository
Hi, as it was already discussed on this list, here it is my attempt in splitting virt-p2v in an own repository. Sadly there are things that must be copied from libguestfs, as it cannot be avoided. The approach taken was to run a script (will send separately) to just get the "p2v" subdirectory with its history as own repository, and then add in few followup commits all the bits needed