* build-aux/vc-list-files: Don't assume test -e works.
+2017-08-21 Paul Eggert <eggert@cs.ucla.edu>
+
+ vc-list-files: port to Solaris 10
+ * build-aux/vc-list-files: Don't assume test -e works.
+
2017-08-21 Karl Berry <karl@freefriends.org>
* doc/posix-functions/srandom.texi (srandom): typo }.
# List version-controlled file names.
# Print a version string.
-scriptversion=2016-01-11.22; # UTC
+scriptversion=2017-08-21.19; # UTC
# Copyright (C) 2006-2017 Free Software Foundation, Inc.
for dir
do
- if test -e .git; then
+ if test -d .git || test -f .git; then
test "x$dir" = x. \
&& dir= sed_esc= \
|| { dir="$dir/"; sed_esc=`echo "$dir"|env sed 's,\([\\/]\),\\\\\1,g'`; }