changeset 5870:0e974fb1c99e

typos etc.
author Karl Berry <karl@freefriends.org>
date Thu, 19 May 2005 13:17:34 +0000
parents 124026e70c94
children 8b95519c71b9
files doc/gnulib.texi
diffstat 1 files changed, 9 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/doc/gnulib.texi
+++ b/doc/gnulib.texi
@@ -1,5 +1,5 @@
 \input texinfo   @c -*-texinfo-*-
-@comment $Id: gnulib.texi,v 1.7 2005-04-18 20:58:20 jas Exp $
+@comment $Id: gnulib.texi,v 1.8 2005-05-19 13:17:34 karl Exp $
 @comment %**start of header
 @setfilename gnulib.info
 @settitle GNU Gnulib
@@ -7,14 +7,14 @@
 @syncodeindex pg cp
 @comment %**end of header
 
-@set UPDATED $Date: 2005-04-18 20:58:20 $
+@set UPDATED $Date: 2005-05-19 13:17:34 $
 
 @copying
 This manual is for GNU Gnulib (updated @value{UPDATED}),
 which is a library of common routines intended to be shared at the
 source level.
 
-Copyright @copyright{} 2004 Free Software Foundation, Inc.
+Copyright @copyright{} 2004, 2005 Free Software Foundation, Inc.
 
 @quotation
 Permission is granted to copy, distribute and/or modify this document
@@ -65,8 +65,9 @@
 @node Gnulib
 @chapter Gnulib
 
-This is not a real manual.  It's just a place to store random notes
-until someone (you?) gets around to actually writing a manual.
+This manual contains some bare-bones documentation, but not much more.
+It's mostly been a place to store notes until someone (you?) gets
+around to writing a coherent manual.
 
 Getting started:
 
@@ -395,14 +396,15 @@
 SUBDIRS += gl
 @end example
 
-Finally, you have add C flags and LD flags, so that you can make use
+Finally, you have to add compiler and linker flags in the appropriate
+source directories, so that you can make use
 of the gnulib library.  For example:
 
 @example
 ...
 AM_CPPFLAGS = -I$(top_srcdir)/lib
 ...
-LIBADD = lib/libgnu.la
+LIBADD = lib/libgnu.a
 ...
 @end example