From efec5175a65f44f7509e58443bce98efa0916ad2 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Mon, 21 Aug 2017 12:38:20 -0700 Subject: vc-list-files: port to Solaris 10 * build-aux/vc-list-files: Don't assume test -e works. --- build-aux/vc-list-files | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'build-aux/vc-list-files') diff --git a/build-aux/vc-list-files b/build-aux/vc-list-files index ad683cc3fc..83d3c337e9 100755 --- a/build-aux/vc-list-files +++ b/build-aux/vc-list-files @@ -2,7 +2,7 @@ # 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. @@ -65,7 +65,7 @@ test $# = 0 && set . 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'`; } -- cgit v1.2.1