diff options
author | Jim Meyering <meyering@redhat.com> | 2008-05-06 21:23:20 +0000 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2008-05-06 21:23:20 +0000 |
commit | 924e953f478973d450f71137570327ac5c4e703c (patch) | |
tree | 1a02a8b2adb2a3cc37a1c76a64e0067096376b76 /build-aux | |
parent | db3f10c80714393f64de43de144cdf7d57a95c6f (diff) | |
download | libvirt-924e953f478973d450f71137570327ac5c4e703c.tar.gz |
* build-aux/vc-list-files: Add support for bzr.
Author: Soren Hansen <soren@ubuntu.com>
Diffstat (limited to 'build-aux')
-rwxr-xr-x | build-aux/vc-list-files | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/build-aux/vc-list-files b/build-aux/vc-list-files index 63b403a116..abb0c40239 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 |