]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
"time stamp" -> "timestamp", as per POSIX
authorPaul Eggert <eggert@cs.ucla.edu>
Sun, 17 Sep 2017 00:16:14 +0000 (17:16 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 17 Sep 2017 00:16:57 +0000 (17:16 -0700)
bin/autom4te.in
bin/autoreconf.in
build-aux/git-version-gen
doc/autoconf.texi
doc/install.texi
tests/tools.at

index 964ac1a5cf58e79073de49e2f5b78848cebcb33a..efe3434a87be313083181370a899bb610ca2b54e 100644 (file)
@@ -912,7 +912,7 @@ sub up_to_date ($)
       # If a file which used to be included is no longer there, then
       # don't say it's missing (it might no longer be included).  But
       # of course, that causes the output to be outdated (as if the
-      # time stamp of that missing file was newer).
+      # timestamp of that missing file was newer).
       return 0
        if ! $file;
       push @dep, $file;
index 2eaa19cae387516d75f4b87986f711a9ec65dba3..2208a7da8acbb3b4cb6b2b9407327cbbc320be7c 100644 (file)
@@ -318,7 +318,7 @@ sub autoreconf_current_directory ()
   #
   # Always run it.  Tracking its sources for up-to-dateness is too
   # complex and too error prone.  The best we can do is avoiding
-  # nuking the time stamp.
+  # nuking the timestamp.
   my $uses_aclocal = 1;
 
   # Nevertheless, if aclocal.m4 exists and is not made by aclocal,
@@ -353,13 +353,13 @@ sub autoreconf_current_directory ()
     }
   else
     {
-      # Some file systems have sub-second time stamps, and if so we may
+      # Some file systems have sub-second timestamps, and if so we may
       # run into trouble later, after we rerun autoconf and set the
-      # time stamps of input files to be no greater than aclocal.m4,
+      # timestamps of input files to be no greater than aclocal.m4,
       # because the time-stamp-setting operation (utime) has a
       # resolution of only 1 second.  Work around the problem by
       # ensuring that there is at least a one-second window before the
-      # time stamp of aclocal.m4t in which no file time stamps can
+      # timestamp of aclocal.m4t in which no file timestamps can
       # fall.
       sleep 1;
 
index 6c56147d2cf3d4b4af192537f34847ea219d5748..818578f3d4eef80eb0278bbc6c161185d2e26def 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
 # Print a version string.
-scriptversion=2016-01-11.22; # UTC
+scriptversion=2017-09-17.00; # UTC
 
 # Copyright (C) 2007-2016 Free Software Foundation, Inc.
 #
@@ -200,7 +200,7 @@ v=`echo "$v" |sed "s/^$prefix//"`
 # string we're using came from git.  I.e., skip the test if it's "UNKNOWN"
 # or if it came from .tarball-version.
 if test "x$v_from_git" != x; then
-  # Don't declare a version "dirty" merely because a time stamp has changed.
+  # Don't declare a version "dirty" merely because a timestamp has changed.
   git update-index --refresh > /dev/null 2>&1
 
   dirty=`exec 2>/dev/null;git diff-index --name-only HEAD` || dirty=
index e51032324c6c4e070254708e15fead4c95f81e37..ca5bd79fb21db629f92ed0da32301527d2a05e34 100644 (file)
@@ -21219,7 +21219,7 @@ dest-stamp: src
 
 Apart from timestamp resolution, there are also differences in handling
 equal timestamps.  HP-UX @command{make} updates targets if it has the
-same time stamp as one of its prerequisites, in violation of Posix rules.
+same timestamp as one of its prerequisites, in violation of Posix rules.
 
 This can cause spurious rebuilds for repeated runs of @command{make}.
 This in turn can cause @command{make} to fail if it tries to rebuild
index 776eab1e545811b5e8ce72154a1235d4a5278fc3..1b9627d10d7a750cd76408525469a10997e8f2b0 100644 (file)
@@ -262,7 +262,7 @@ use an ANSI C compiler:
 @noindent
 and if that doesn't work, install pre-built binaries of GCC for HP-UX.
 
-HP-UX @command{make} updates targets which have the same time stamps as
+HP-UX @command{make} updates targets which have the same timestamps as
 their prerequisites, which makes it generally unusable when shipped
 generated files such as @command{configure} are involved.  Use GNU
 @command{make} instead.
index ff274d4401dfc1f22713b5eda3f864a572719db4..f8e504123bc8ca005ec74cb03c545e12adea584c 100644 (file)
@@ -123,7 +123,7 @@ AT_DATA([file.m4],
 ]])
 AT_CHECK_AUTOM4TE([-o file file.m4])
 
-# Create a file whose time stamp is in the future.
+# Create a file whose timestamp is in the future.
 # (next year)-01-01 00:01 UTC should always be in the future,
 # even on slow machines.
 echo BAD >file
@@ -741,7 +741,7 @@ AC_CONFIG_HEADERS(config.h:config.hin)
 AC_DEFINE(that, "whatever you want.")
 ]])
 
-# The test suite goes too fast for the cache time stamps...
+# The test suite goes too fast for the cache timestamps...
 # Pass --force.
 AT_CHECK_AUTOHEADER([--force], [1], [], [ignore])
 
@@ -1256,7 +1256,7 @@ AT_CLEANUP
 # -----------------------------
 
 AT_SETUP([autom4te preselections])
-: ${sleep='sleep 1'}   # Command to force different time stamps.
+: ${sleep='sleep 1'}   # Command to force different timestamps.
 # If this test should run on FAT file systems and older w32,
 # then setting $sleep correctly needs to be revisited.