]> xenbits.xensource.com Git - libvirt.git/commitdiff
* build-aux/vc-list-files: Add support for bzr.
authorJim Meyering <meyering@redhat.com>
Tue, 6 May 2008 21:23:20 +0000 (21:23 +0000)
committerJim Meyering <meyering@redhat.com>
Tue, 6 May 2008 21:23:20 +0000 (21:23 +0000)
Author: Soren Hansen <soren@ubuntu.com>

ChangeLog
build-aux/vc-list-files

index b14c2c2a930e36754aed2ddec42572901296c46d..bff49da611523a78d89a5f43347ffc03cd97e062 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,9 +1,13 @@
+Tue May  6 23:20:12 EST 2008 Jim Meyering <meyering@redhat.com>
+
+       * build-aux/vc-list-files: Add support for bzr.
+       Patch by Soren Hansen.
+
 Mon May  5 15:57:28 EST 2008 Daniel P. Berrange <berrange@redhat.com>
 
        * configure.in: Check in /usr/sbin for iptables too, for SUSE
        distros (Jim Fehlig)
 
-
 Thu May  1 14:10:28 EST 2008 Daniel P. Berrange <berrange@redhat.com>
 
        * src/remote_internal.c: Cope with NULL from qparam_get_query
index 63b403a1164a51b34c9b80f2f3e3e67f9b0c7cad..abb0c402397d2059d76ce2c7fab67c9528249980 100755 (executable)
@@ -75,6 +75,9 @@ if test -d .git; then
   eval exec git ls-files '"$dir"' $postprocess
 elif test -d .hg; then
   eval exec hg locate '"$dir/*"' $postprocess
+elif test -d .bzr; then
+  test "$postprocess" = '' && postprocess="| sed 's|^\./||'"
+  eval exec bzr ls --versioned '"$dir"' $postprocess
 elif test -d CVS; then
   test "$postprocess" = '' && postprocess="| sed 's|^\./||'"
   if test -x build-aux/cvsu; then