From: Harlan Stenn Date: Tue, 15 Aug 2006 09:40:34 +0000 (-0400) Subject: test -r seems more portable than test -e X-Git-Tag: NTP_4_2_3P31~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2f8801a57ec75444ffb2f93b588d22d6cd657c3c;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 e8b8d6ce2..f9774d30c 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; \