From: Harlan Stenn Date: Tue, 15 Aug 2006 09:40:34 +0000 (-0400) Subject: test -r seems more portable than test -e X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=483be6293f95e7d6ad42ebe9133a2c2aa910292a;p=thirdparty%2Fntp.git test -r seems more portable than test -e bk: 44e19692KdRbIkrkeG4sLIckSijNkA --- diff --git a/sntp/Makefile.am b/sntp/Makefile.am index e8b8d6ce2c..f9774d30c7 100644 --- a/sntp/Makefile.am +++ b/sntp/Makefile.am @@ -46,7 +46,7 @@ man_MANS= sntp.1 FRC: $(srcdir)/version.def: FRC @cd $(srcdir) \ - && test -e ../include/version.def \ + && test -r ../include/version.def \ && ( if cmp -s ../include/version.def version.def; \ then : ; \ else cp ../include/version.def version.def; \