From: Zoltan Rado Date: Sun, 21 Dec 2008 16:13:37 +0000 (+0100) Subject: Fix a couple of typos in the manual. X-Git-Tag: v1.10b~41 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=243da1ec4a23bfe8f69d22ffbc037740cbfb683d;p=thirdparty%2Fautomake.git Fix a couple of typos in the manual. * doc/automake.texi (DESTDIR): Fix a couple of typos. * THANKS: Update. Signed-off-by: Ralf Wildenhues --- diff --git a/ChangeLog b/ChangeLog index a2fb49036..4b5809b3f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-12-21 Zoltan Rado (tiny change) + + * doc/automake.texi (DESTDIR): Fix a couple of typos. + * THANKS: Update. + 2008-12-13 Ralf Wildenhues Fix nonportable sed script in 'missing'. diff --git a/THANKS b/THANKS index 1c743542f..10d4ddc1e 100644 --- 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 diff --git a/doc/automake.texi b/doc/automake.texi index 56f1aa77c..760e1eeb7 100644 --- a/doc/automake.texi +++ b/doc/automake.texi @@ -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.)