Fix syntax error that was breaking RPM builds.

This commit is contained in:
Cole Robinson 2008-10-22 13:55:15 +00:00
parent c6f0a7b2db
commit 6d035f67e0
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Wed Oct 22 09:53:00 EST 2008 Cole Robinson <crobinso@redhat.com>
* configure.in: Fix syntax error which was breaking RPM builds.
Tue Oct 21 19:22:00 CEST 2008 Chris Lalancette <clalance@redhat.com>
* src/storage_conf.c: Make logical pool dumpXML more idempotent with
defineXML by outputting <device name='/dev/sdb' /> when we are

View File

@ -1011,7 +1011,7 @@ AM_CONDITIONAL([WITH_LIBVIRTD],[test "x$with_libvirtd" = "xyes"])
dnl Check for gettext
AM_GNU_GETTEXT_VERSION([0.14.1])
AM_GNU_GETTEXT([external])
ALL_LINGUAS=`{cd "$srcdir/po" > /dev/null && ls *.po} | sed 's+\.po$++'`
ALL_LINGUAS=`cd "$srcdir/po" > /dev/null && ls *.po | sed 's+\.po$++'`
dnl Extra link-time flags for Cygwin.
dnl Copied from libxml2 configure.in, but I removed mingw changes