changeset 10036:c21afc45f998

build-aux/vc-list-files: Add support for bzr.
author Soren Hansen <soren@ubuntu.com>
date Tue, 06 May 2008 23:12:55 +0200
parents 328c376f78e9
children b699ce317534
files ChangeLog build-aux/vc-list-files
diffstat 2 files changed, 7 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sat May 03 11:50:31 2008 +0200
+++ b/ChangeLog	Tue May 06 23:12:55 2008 +0200
@@ -1,3 +1,7 @@
+2008-05-06  Soren Hansen  <soren@ubuntu.com>  (tiny change)
+
+	* build-aux/vc-list-files: Add support for bzr.
+
 2008-05-03  Jim Meyering  <meyering@redhat.com>
 
 	avoid failed assertion with tight malloc
--- a/build-aux/vc-list-files	Sat May 03 11:50:31 2008 +0200
+++ b/build-aux/vc-list-files	Tue May 06 23:12:55 2008 +0200
@@ -75,6 +75,9 @@
   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