[libvirt] [PATCH] Fix typo in configure.ac

2014-03-21 Thread Ján Tomko
s/profram/program/ --- Pushed as trivial. configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 85d0dbe..73efffa 100644 --- a/configure.ac +++ b/configure.ac @@ -433,7 +433,7 @@ AC_DEFINE_UNQUOTED([DNSMASQ],["$DNSMASQ"], AC_DEFINE_UNQU

Re: [libvirt] [PATCH] Fix typo in configure.ac causing $LIBS to gain a copy of $CFLAGS

2013-02-05 Thread Eric Blake
On 02/05/2013 09:46 AM, Daniel P. Berrange wrote: > From: "Daniel P. Berrange" > > The virt-dbus.m4 check for DBus was preserving $LIBS before > modifying it. Except it wasn't. It was preserving another > copy of $CFLAGS. The result was that after the check completed, > $LIBS got polluted with $C

Re: [libvirt] [PATCH] Fix typo in configure.ac causing $LIBS to gain a copy of $CFLAGS

2013-02-05 Thread Jiri Denemark
On Tue, Feb 05, 2013 at 16:46:20 +, Daniel P. Berrange wrote: > From: "Daniel P. Berrange" > > The virt-dbus.m4 check for DBus was preserving $LIBS before > modifying it. Except it wasn't. It was preserving another > copy of $CFLAGS. The result was that after the check completed, > $LIBS got

[libvirt] [PATCH] Fix typo in configure.ac causing $LIBS to gain a copy of $CFLAGS

2013-02-05 Thread Daniel P. Berrange
From: "Daniel P. Berrange" The virt-dbus.m4 check for DBus was preserving $LIBS before modifying it. Except it wasn't. It was preserving another copy of $CFLAGS. The result was that after the check completed, $LIBS got polluted with $CFLAGS Signed-off-by: Daniel P. Berrange --- m4/virt-dbus.m4