1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-10 06:03:31 +02:00

* bootstrap: Sync from gnulib and remove part of a local kludge.

This commit is contained in:
Jim Meyering
2008-03-12 11:47:53 +01:00
parent 9c393fa194
commit dec8bb25bb

View File

@@ -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'."