]> git.ipfire.org Git - thirdparty/make.git/commitdiff
Don't suggest sending questions to bug-gnu-utils.
authorRoland McGrath <roland@redhat.com>
Tue, 15 Aug 1995 00:03:06 +0000 (00:03 +0000)
committerRoland McGrath <roland@redhat.com>
Tue, 15 Aug 1995 00:03:06 +0000 (00:03 +0000)
Use @smallexample instead of @example to avoid overfull hbox.

make.texinfo

index fac34fd2ac3075632f10035d747912636049ce1f..94acc40e1e5ef61c1fcdafd33331679a91365ca6 100644 (file)
@@ -8,10 +8,10 @@
 @c FSF publishers: format makebook.texi instead of using this file directly.
 
 @set RCSID $Id$
-@set EDITION 0.48
-@set VERSION 3.73 Beta
-@set UPDATED 4 April 1995
-@set UPDATE-MONTH April 1995
+@set EDITION 0.49
+@set VERSION 3.74 Beta
+@set UPDATED 14 August 1995
+@set UPDATE-MONTH August 1995
 @comment The ISBN number might need to change on next publication.
 @set ISBN 1-882114-50-7
 
@@ -435,14 +435,6 @@ get this information with the command @samp{make --version}.
 Be sure also to include the type of machine and operating system you are
 using.  If possible, include the contents of the file @file{config.h}
 that is generated by the configuration process.
-
-Non-bug suggestions are always welcome as well.  If you have questions
-about things that are unclear in the documentation or are just obscure
-features, send a message to the bug reporting address.  We cannot
-guarantee you'll get help with your problem, but many seasoned
-@code{make} users read the mailing list and they will probably try to
-help you out.  The maintainers sometimes answer such questions as well,
-when time permits.
  
 @node Introduction, Makefiles, Overview, Top
 @comment  node-name,  next,  previous,  up
@@ -2585,13 +2577,13 @@ the new dependencies.
 Here is the pattern rule to generate a file of dependencies (i.e., a makefile)
 called @file{@var{name}.d} from a C source file called @file{@var{name}.c}:
 
-@example
+@smallexample
 @group
 %.d: %.c
         $(SHELL) -ec '$(CC) -M $(CPPFLAGS) $< \
                       | sed '\''s/$*\\.o[ :]*/& $@@/g'\'' > $@@'
 @end group
-@end example
+@end smallexample
 
 @noindent
 @xref{Pattern Rules}, for information on defining pattern rules.  The