[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Automake-commit] [SCM] GNU Automake branch, branch-1.11, updated. v1.11
From: |
Ralf Wildenhues |
Subject: |
[Automake-commit] [SCM] GNU Automake branch, branch-1.11, updated. v1.11.1-40-g1c0fa92 |
Date: |
Sun, 28 Mar 2010 20:24:35 +0000 |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Automake".
http://git.sv.gnu.org/gitweb/?p=automake.git;a=commitdiff;h=1c0fa92e23a10f7f695a2f7e68a9e516b6fc101b
The branch, branch-1.11 has been updated
via 1c0fa92e23a10f7f695a2f7e68a9e516b6fc101b (commit)
via ebd30f30a5456b138e7f1f1c4806228ead13cd1c (commit)
via 92bd8069f5b08910679c58de98e0db81564ef7db (commit)
via e937eb5a5a6d27d1b0b00a1d5a0cf8fb434e2754 (commit)
from e2cc9fa83aa80f14c4c9501fe255ad6a93241b5c (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 1c0fa92e23a10f7f695a2f7e68a9e516b6fc101b
Merge: e2cc9fa83aa80f14c4c9501fe255ad6a93241b5c
ebd30f30a5456b138e7f1f1c4806228ead13cd1c
Author: Ralf Wildenhues <address@hidden>
Date: Sun Mar 28 18:04:55 2010 +0200
Merge branch 'maint' into branch-1.11
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 15 ++++++++++++++-
doc/automake.texi | 28 ++++++++++++++--------------
2 files changed, 28 insertions(+), 15 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index c360815..2b28f68 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,16 @@
+2010-03-28 Ralf Wildenhues <address@hidden>
+
+ Remove uses of @acronym and @sc.
+ * doc/automake.texi (Public Macros, Limitations on File Names):
+ Remove all usage of @acronym and @sc in the manual.
+ Suggested by Karl Berry.
+
+2010-03-13 Karl Berry <address@hidden>
+
+ GNU hello uses fdl.texi, not gpl.texi.
+ * doc/automake.texi (Texinfo): Adjust example to upstream
+ change.
+
2010-03-06 Ralf Wildenhues <address@hidden>
Formatting cleanups in macro comments.
@@ -6,7 +19,7 @@
lib/Automake/Variable.pm, lib/Automake/XFile.pm,
m4/options.m4, m4/substnot.m4: Fix macro comment format.
-2010-03-03 Stefano Lattarini <address@hidden>
+2010-03-04 Stefano Lattarini <address@hidden>
Ralf Wildenhues <address@hidden>
Avoid generation of `tests/defs-p' file.
diff --git a/doc/automake.texi b/doc/automake.texi
index ffa022d..b79c448 100644
--- a/doc/automake.texi
+++ b/doc/automake.texi
@@ -17,7 +17,7 @@
@copying
-This manual is for @acronym{GNU} Automake (version @value{VERSION},
+This manual is for GNU Automake (version @value{VERSION},
@value{UPDATED}), a program that creates GNU standards-compliant
Makefiles from template files.
@@ -27,11 +27,11 @@ Inc.
@quotation
Permission is granted to copy, distribute and/or modify this document
-under the terms of the @acronym{GNU} Free Documentation License,
+under the terms of the GNU Free Documentation License,
Version 1.3 or any later version published by the Free Software
Foundation; with no Invariant Sections, with no Front-Cover texts,
and with no Back-Cover Texts. A copy of the license is included in the
-section entitled address@hidden Free Documentation License.''
+section entitled ``GNU Free Documentation License.''
@end quotation
@end copying
@@ -3841,7 +3841,7 @@ output variable @code{lispdir} to the full path to Emacs'
site-lisp
directory.
Note that this test assumes the @command{emacs} found to be a version
-that supports Emacs Lisp (such as @sc{gnu} Emacs or XEmacs). Other
+that supports Emacs Lisp (such as GNU Emacs or XEmacs). Other
emacsen can cause this test to hang (some, like old versions of
MicroEmacs, start up in interactive mode, requiring @kbd{C-x C-c} to
exit, which is hardly obvious for a non-emacs user). In most cases,
@@ -7741,14 +7741,14 @@ generated version file.
Sometimes an info file actually depends on more than one @file{.texi}
file. For instance, in GNU Hello, @file{hello.texi} includes the file
address@hidden You can tell Automake about these dependencies using
address@hidden You can tell Automake about these dependencies using
the @address@hidden variable. Here is how GNU Hello does it:
@vindex TEXINFOS
@vindex _TEXINFOS
@example
info_TEXINFOS = hello.texi
-hello_TEXINFOS = gpl.texi
+hello_TEXINFOS = fdl.texi
@end example
@cindex @file{texinfo.tex}
@@ -10675,20 +10675,20 @@ names, and reserve @samp{/} as a directory separator.
Also, they
require that file names are properly encoded for the user's locale.
Automake is subject to these limits.
-Portable packages should limit themselves to @acronym{POSIX} file
-names. These can contain @acronym{ASCII} letters and digits,
+Portable packages should limit themselves to POSIX file
+names. These can contain ASCII letters and digits,
@samp{_}, @samp{.}, and @samp{-}. File names consist of components
separated by @samp{/}. File name components cannot begin with
@samp{-}.
Portable POSIX file names cannot contain components that exceed a
14-byte limit, but nowadays it's normally safe to assume the
-more-generous @acronym{XOPEN} limit of 255 bytes. @acronym{POSIX}
-limits file names to 255 bytes (@acronym{XOPEN} allows 1023 bytes),
+more-generous XOPEN limit of 255 bytes. POSIX
+limits file names to 255 bytes (XOPEN allows 1023 bytes),
but you may want to limit a source tarball to file names of 99 bytes
to avoid interoperability problems with old versions of @command{tar}.
-If you depart from these rules (e.g., by using address@hidden
+If you depart from these rules (e.g., by using non-ASCII
characters in file names, or by using lengthy file names), your
installers may have problems for reasons unrelated to Automake.
However, if this does not concern you, you should know about the
@@ -10718,12 +10718,12 @@ For example, the full name of the directory
containing the source
files should not contain these characters.
Source and installation file names like @file{main.c} are limited even
-further: they should conform to the @acronym{POSIX}/@acronym{XOPEN}
+further: they should conform to the POSIX/XOPEN
rules described above. In addition, if you plan to port to
address@hidden environments, you should avoid file names that
+non-POSIX environments, you should avoid file names that
differ only in case (e.g., @file{makefile} and @file{Makefile}).
Nowadays it is no longer worth worrying about the 8.3 limits of
address@hidden file systems.
+DOS file systems.
@node distcleancheck
@section Files left in build directory after distclean
hooks/post-receive
--
GNU Automake
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Automake-commit] [SCM] GNU Automake branch, branch-1.11, updated. v1.11.1-40-g1c0fa92,
Ralf Wildenhues <=