summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2008-03-12 11:47:53 +0100
committerJim Meyering <meyering@redhat.com>2008-03-12 11:47:53 +0100
commitdec8bb25bb6da2fe9fe6dd63c0fbbd593a0e94cb (patch)
tree65ec9c1aecc83208d2e3bce42116f43f5be8c71f /bootstrap
parent9c393fa1944e5decb2838de7cbcf6b371717fd77 (diff)
downloadcoreutils-dec8bb25bb6da2fe9fe6dd63c0fbbd593a0e94cb.tar.xz
* bootstrap: Sync from gnulib and remove part of a local kludge.
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap4
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap b/bootstrap
index 381015943..358d1364b 100755
--- 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'."