changeset 9786:c9c6f9f3e978

* build-aux/bootstrap (version_controlled_file): Adapt for SVN repositories.
author Sergey Poznyakoff <gray@gnu.org.ua>
date Wed, 12 Mar 2008 05:46:23 +0200
parents dd4957ea4e80
children 932a22d80734
files ChangeLog build-aux/bootstrap
diffstat 2 files changed, 7 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-03-12  Sergey Poznyakoff  <gray@gnu.org.ua>
+
+	* build-aux/bootstrap (version_controlled_file): Adapt for SVN
+	repositories.
+
 2008-03-11  Bruno Haible  <bruno@clisp.org>
 
 	Avoid conflicts between local macro definitions.
--- a/build-aux/bootstrap
+++ b/build-aux/bootstrap
@@ -415,6 +415,8 @@
 	     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