On Sun, Dec 06, 2015 at 10:30:24AM +0100, jean-christophe Manciot wrote: > 1.31.28 issue regarding some packages that cannot be authenticated is gone, > but there's a new issue while building 1.31.29: > > /bin/mkdir -p '/usr/share/man/man3' > /usr/bin/install -c -m 644 ./guestfs-perl.3 '/usr/share/man/man3' > /usr/bin/install: cannot stat './guestfs-perl.3': No such file or directory > Makefile:1531: recipe for target 'install-man3' failed > make[3]: *** [install-man3] Error 1 > make[3]: Leaving directory > '/home/actionmystique/Program-Files/Ubuntu/Libguestfs/git-libguestfs/perl/examples' > Makefile:1623: recipe for target 'install-am' failed > make[2]: *** [install-am] Error 2 > make[2]: Leaving directory > '/home/actionmystique/Program-Files/Ubuntu/Libguestfs/git-libguestfs/perl/examples' > Makefile:1843: recipe for target 'install-recursive' failed > make[1]: *** [install-recursive] Error 1 > make[1]: Leaving directory > '/home/actionmystique/Program-Files/Ubuntu/Libguestfs/git-libguestfs' > Makefile:2307: recipe for target 'install' failed > make: *** [install] Error 2 > > **** Installation failed. Aborting package creation. > > Whole log is attached.
Ooops - see patch. It would sure be nice if automake complained more loudly about obviously mal-formed Makefiles ... Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones Read my programming and virtualization blog: http://rwmj.wordpress.com virt-df lists disk usage of guests without needing to install any software inside the virtual machine. Supports Linux and Windows. http://people.redhat.com/~rjones/virt-df/
>From e4902d329e2eefdf1f2b7908df3ca5d0055077b8 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" <[email protected]> Date: Sun, 6 Dec 2015 16:23:34 +0000 Subject: [PATCH] perl: Add missing backslash in CLEANFILES rule. This fixes commit a2edda266e891a4771870f89e87c886318ef80d6. Thanks: Jean-Christophe Manciot. --- perl/examples/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl/examples/Makefile.am b/perl/examples/Makefile.am index be3a710..c58ef16 100644 --- a/perl/examples/Makefile.am +++ b/perl/examples/Makefile.am @@ -24,7 +24,7 @@ EXTRA_DIST = \ guestfs-perl.pod CLEANFILES = \ - guestfs-perl.3 + guestfs-perl.3 \ stamp-guestfs-perl.pod man_MANS = guestfs-perl.3 -- 2.5.0
_______________________________________________ Libguestfs mailing list [email protected] https://www.redhat.com/mailman/listinfo/libguestfs
