# HG changeset patch # User Soren Hansen # Date 1210108375 -7200 # Node ID c21afc45f9984688ca8e5ff3e5e519978ca390bb # Parent 328c376f78e990d81fe14dfd0bf94e63dde66e08 build-aux/vc-list-files: Add support for bzr. diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-05-06 Soren Hansen (tiny change) + + * build-aux/vc-list-files: Add support for bzr. + 2008-05-03 Jim Meyering avoid failed assertion with tight malloc diff --git a/build-aux/vc-list-files b/build-aux/vc-list-files --- a/build-aux/vc-list-files +++ b/build-aux/vc-list-files @@ -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