diff --git a/ChangeLog b/ChangeLog index 58cb909db5..19e67e2e89 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Wed Oct 22 09:53:00 EST 2008 Cole Robinson + + * configure.in: Fix syntax error which was breaking RPM builds. + Tue Oct 21 19:22:00 CEST 2008 Chris Lalancette * src/storage_conf.c: Make logical pool dumpXML more idempotent with defineXML by outputting when we are diff --git a/configure.in b/configure.in index 66d271a987..d2af4def03 100644 --- a/configure.in +++ b/configure.in @@ -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