From 4f4b3279ed99b823c04f09e990bfe6b13b7a00c1 Mon Sep 17 00:00:00 2001 From: Sergey Poznyakoff Date: Wed, 12 Mar 2008 05:46:23 +0200 Subject: [PATCH] * build-aux/bootstrap (version_controlled_file): Adapt for SVN repositories. --- ChangeLog | 5 +++++ build-aux/bootstrap | 2 ++ 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index 6b4a9119d..110fada14 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-03-12 Sergey Poznyakoff + + * build-aux/bootstrap (version_controlled_file): Adapt for SVN + repositories. + 2008-03-11 Bruno Haible Avoid conflicts between local macro definitions. diff --git a/build-aux/bootstrap b/build-aux/bootstrap index cf6b73b16..1a24e82db 100755 --- a/build-aux/bootstrap +++ b/build-aux/bootstrap @@ -415,6 +415,8 @@ version_controlled_file() { grep '^/[^/]*/[0-9]' > /dev/null && found=yes elif test -d .git; then git rm -n "$dir/$file" > /dev/null 2>&1 && found=yes + elif test -d .svn; then + svn log -r HEAD "$dir/$file" > /dev/null 2>&1 && found=yes else echo "$0: no version control for $dir/$file?" >&2 fi -- 2.11.0