]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
Fix a couple of typos in the manual.
authorZoltan Rado <z.rado@chello.hu>
Sun, 21 Dec 2008 16:13:37 +0000 (17:13 +0100)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sun, 21 Dec 2008 16:15:17 +0000 (17:15 +0100)
* doc/automake.texi (DESTDIR): Fix a couple of typos.
* THANKS: Update.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
ChangeLog
THANKS
doc/automake.texi

index a2fb49036fa8f4722a0da64a698cd693683d8d16..4b5809b3f8b534a17a233511e54c6df9774f6b8e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-12-21  Zoltan Rado  <z.rado@chello.hu>  (tiny change)
+
+       * doc/automake.texi (DESTDIR): Fix a couple of typos.
+       * THANKS: Update.
+
 2008-12-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
        Fix nonportable sed script in 'missing'.
diff --git a/THANKS b/THANKS
index 1c743542faa976cc1f53df81faf470e463d192bc..10d4ddc1e8f8f0f0ec1e5905d48ceabbdcca3bb0 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -331,6 +331,7 @@ William S Fulton    wsf@fultondesigns.co.uk
 Yann Droneaud          ydroneaud@meuh.eu.org
 Younes Younes          younes@cs.tu-berlin.de
 Zack Weinberg          zack@codesourcery.com
+Zoltan Rado            z.rado@chello.hu
 
 ;; Local Variables:
 ;; mode: text
index 56f1aa77cb8a3b9e04505fa775365bb62758b9c9..760e1eeb709eee311f3e6981b6ac185a200d04b9 100644 (file)
@@ -1114,13 +1114,13 @@ snapshot of all the files to be installed.
 @dots{}
 ~/amhello-1.0 % @kbd{cd ~/inst}
 ~/inst % @kbd{find . -type f -print > ../files.lst}
-~/inst % @kbd{tar zcvf ~/amhello-1.0-i686.tar.gz `cat ../file.lst`}
+~/inst % @kbd{tar zcvf ~/amhello-1.0-i686.tar.gz `cat ../files.lst`}
 ./usr/bin/hello
 ./usr/share/doc/amhello/README
 @end example
 
 After this example, @code{amhello-1.0-i686.tar.gz} is ready to be
-uncompressed in @file{/} on many hosts.  (Using @code{`cat ../file.lst`}
+uncompressed in @file{/} on many hosts.  (Using @code{`cat ../files.lst`}
 instead of @samp{.} as argument for @command{tar} avoids entries for
 each subdirectory in the archive: we would not like @command{tar} to
 restore the modification time of @file{/}, @file{/usr/}, etc.)