search for: guestfs_am_v_podwrapper

Displaying 6 results from an estimated 6 matches for "guestfs_am_v_podwrapper".

2016 Aug 04
0
[PATCH] build: Add silent rules for podwrapper.
..., 4 deletions(-) diff --git a/m4/guestfs_perl.m4 b/m4/guestfs_perl.m4 index 249772c..be688b4 100644 --- a/m4/guestfs_perl.m4 +++ b/m4/guestfs_perl.m4 @@ -35,7 +35,7 @@ else fi dnl Define the path to the podwrapper program. -PODWRAPPER="$PERL $(pwd)/podwrapper.pl" +PODWRAPPER="\$(guestfs_am_v_podwrapper)$PERL $(pwd)/podwrapper.pl" AC_SUBST([PODWRAPPER]) dnl Check for Perl for Perl bindings and Perl tools. diff --git a/podwrapper.pl.in b/podwrapper.pl.in index 7322a30..e9cafed 100755 --- a/podwrapper.pl.in +++ b/podwrapper.pl.in @@ -520,7 +520,7 @@ if ($man) { unlink $man;...
2019 Aug 30
0
[p2v PATCH 3/3] build: require List::MoreUtils
...p2v-config.pl +AC_MSG_CHECKING([for List::MoreUtils]) +if ! $PERL -MList::MoreUtils -e1 >&AS_MESSAGE_LOG_FD 2>&1; then + AC_MSG_ERROR([perl List::MoreUtils must be installed]) +else + AC_MSG_RESULT([yes]) +fi + dnl Define the path to the podwrapper program. PODWRAPPER="\$(guestfs_am_v_podwrapper)$PERL $(pwd)/podwrapper.pl" AC_SUBST([PODWRAPPER]) -- 2.21.0
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 Nov 27
5
[v2v PATCH v2 0/5] Various build cleanups
Brought to you by the "I haven't rebuilt the libguestfs universe in a while" saga -- now with working test suite. Pino Toscano (5): build: remove extra gnulib submodule build: remove extra checks and submodules build: stop using gnulib in test-harness build: remove unused gnulib modules Remove extra entries from podfiles .gitmodules | 3 -- Makefile.am
2019 Nov 27
6
[v2v PATCH 0/5] Various build cleanups
Brought to you by the "I haven't rebuilt the libguestfs universe in a while" saga. Pino Toscano (5): build: remove extra gnulib submodule build: remove extra checks and submodules build: stop using gnulib in test-harness build: remove unused gnulib modules Remove extra entries from podfiles .gitmodules | 3 -- Makefile.am | 2 - bootstrap
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