aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'build-aux/vc-list-files')
-rwxr-xr-xbuild-aux/vc-list-files3
1 files changed, 3 insertions, 0 deletions
diff --git a/build-aux/vc-list-files b/build-aux/vc-list-files
index 63b403a11..abb0c4023 100755
--- a/build-aux/vc-list-files
+++ b/build-aux/vc-list-files
@@ -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