diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2013-09-10 12:03:30 +0200 |
---|---|---|
committer | Stefano Lattarini <stefano.lattarini@gmail.com> | 2013-10-28 23:06:33 +0000 |
commit | 7a8b3b0c6b28626b7c62354973e923f4aa579743 (patch) | |
tree | cc66d49f11bfcb1a1a46b6564afae65f7634a3c2 | |
parent | 2c063f33aece0afa0ee5c10d94aed6fa722c5ea9 (diff) | |
download | automake-7a8b3b0c6b28626b7c62354973e923f4aa579743.tar.gz automake-7a8b3b0c6b28626b7c62354973e923f4aa579743.tar.bz2 automake-7a8b3b0c6b28626b7c62354973e923f4aa579743.zip |
docs: correct typos in the fix-timestamp.sh script
* doc/automake.texi: Here. The original version of this example script
makes no sense at all, using 'configure' instead of the intended 'touch'
in few key places.
Copyright-paperwork-exempt: yes
Signed-off-by: Peter Breitenlohner <peb@mppmu.mpg.de>
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
-rw-r--r-- | doc/automake.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/automake.texi b/doc/automake.texi index 8f4020bf8..62728d4cf 100644 --- a/doc/automake.texi +++ b/doc/automake.texi @@ -11728,9 +11728,9 @@ touch aclocal.m4 sleep 1 # autoconf-generated configure depends on aclocal.m4 and on # configure.ac -configure config.h.in +touch configure # so does autoheader-generated config.h.in -configure config.h.in +touch config.h.in # and all the automake-generated Makefile.in files touch `find . -name Makefile.in -print` # finally, the makeinfo-generated '.info' files depend on the |