]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
* bootstrap: Sync from gnulib and remove part of a local kludge.
authorJim Meyering <meyering@redhat.com>
Wed, 12 Mar 2008 10:47:53 +0000 (11:47 +0100)
committerJim Meyering <meyering@redhat.com>
Wed, 12 Mar 2008 10:47:53 +0000 (11:47 +0100)
bootstrap

index 381015943927c52e5a1c1a4306fee18d76f5afdc..358d1364b9482d6a72b129ff38b1501aa3e497eb 100755 (executable)
--- a/bootstrap
+++ b/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
@@ -624,6 +626,4 @@ m=gnulib-tests/gnulib.mk
 sed 's,\.\./\.\.,..,g' $m > $m-t
 mv -f $m-t $m
 
-chmod a+x gnulib-tests/test-*.sh
-
 echo "$0: done.  Now you can run './configure'."