* automake.texi (Canonicalizing Automake macros): Document not
authorAkim Demaille <akim@epita.fr>
Tue, 8 May 2001 16:17:29 +0000 (16:17 +0000)
committerAkim Demaille <akim@epita.fr>
Tue, 8 May 2001 16:17:29 +0000 (16:17 +0000)
canonicalizing strudels (@) anymore.

ChangeLog
NEWS
automake.texi
stamp-vti
version.texi

index 27421e1..08c1b67 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-05-08  Lars J. Aas  <larsa@sim.no>
+
+       * automake.texi (Canonicalizing Automake macros): Document not
+       canonicalizing strudels (@) anymore.
+
 2001-05-08  Akim Demaille  <akim@epita.fr>
 
        * distdir.am (dist-all): Build all the flavors using a single
@@ -42,7 +47,6 @@
        (&lang_java_finish): Remove.
        (&lang_ppf77_finish, &lang_ratfor_finish): Adjust.
 
-       
 2001-05-08  Akim Demaille  <akim@epita.fr>
 
        * automake.in (&file_contents_internal): Accept $IS_AM.
        * tests/pr87.test: Added check for blank line after `.c.o' rule.
        Report from Lars J. Aas.
 
-2001-02-07  Lars J. Aas <larsa@sim.no>
+2001-02-07  Lars J. Aas  <larsa@sim.no>
 
        * lisp.am (install-@DIR@LISP): Removed extra space.
        * header.am (install-@DIR@HEADERS): Removed extra space.
        * automake.in (handle_dist_worker): Remove a line that is now
        in distdir.am.
 
-2001-02-04  Kevin Ryde <user42@zip.com.au>
+2001-02-04  Kevin Ryde  <user42@zip.com.au>
 
        * automake.in (handle_configure): Call config.status with empty
        CONFIG_LINKS and CONFIG_COMMANDS when regenerating a file.
        * automake.in (handle_dependencies): Switched the DEP_FILES
        definition to be conditional on @AMDEP@.
 
-2001-02-03  Ville Laurikari <vlaurika@hutcs.cs.hut.fi>
+2001-02-03  Ville Laurikari  <vlaurika@hutcs.cs.hut.fi>
 
        * depcomp (aix): New side-effect dependency tracking mode, for
        the C for AIX compiler.
        (handle_dist_worker): Use global dist_dirs.
        (handle_configure): Set dist_dirs entries at toplevel.
 
-2001-02-02  Gordon Sadler <gbsadler1@lcisp.com>
+2001-02-02  Gordon Sadler  <gbsadler1@lcisp.com>
 
        * automake.texi (Java Support): Added index, @section.
 
        or AC_SUBSTs.
        (add_file): Likewise.
 
-2001-01-13  Kevin Ryde <user42@zip.com.au>
+2001-01-13  Kevin Ryde  <user42@zip.com.au>
 
        * automake.in (handle_ltlibraries): Omit -rpath from
        check_LTLIBRARIES, as per noinst_LTLIBRARIES.
        * automake.in (libtoolize_files): Removed ltconfig.
        (initialize_global_constants): Added ltconfig to common_files.
 
-2000-12-21  Kevin Ryde <user42@zip.com.au>
+2000-12-21  Kevin Ryde  <user42@zip.com.au>
 
        * automake.in (handle_footer): Generate .SUFFIXES target when user
        defines suffixes but automake does not.
 
-2000-12-20  Marc Espie <espie@openbsd.org>
+2000-12-20  Marc Espie  <espie@openbsd.org>
 
        * automake.in (handle_texinfo): Make path of $vtexi explicit in
        dependency.
        * aclocal.in (write_aclocal): Set up aclocal.m4 header with
        normal comments (#) instead of m4 dnl-type comments.
 
-2000-10-17  Alex Hornby <alex@anvil.com>
+2000-10-17  Alex Hornby  <alex@anvil.com>
 
        * depcomp: Altered sed clause to strip of inclusion depth
        numbers generated by cpp. Also output in gcc style.
        configure variables that don't satisfy the other constraints.
        Fixes PR automake/68.
 
-2000-04-14  Victor V. Vengerov <vvv@oktet.ru>
+2000-04-14  Victor V. Vengerov  <vvv@oktet.ru>
 
        Fix for PR automake/67.
        * automake.in (handle_multilib): remove .am suffix in fragment
        * lisp.am (uninstall-@DIR@LISP): Prefix file with $(DESTDIR).
        From Bruno Haible.
 
-2000-07-13  Kevin Ryde <user42@zip.com.au>
+2000-07-13  Kevin Ryde  <user42@zip.com.au>
 
        * automake.in (am_install_var): Apply the $(EXEEXT) hack to
        EXTRA_PROGRAMS as well as other _PROGRAMS.
diff --git a/NEWS b/NEWS
index cbf7eba..1f5d386 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,7 @@ New in 1.4e:
 * Support for `configure.ac'.
 * Support for `else COND', `endif COND' and negated conditions `!COND'.
 * `make dist-all' is much faster.
+* Allows '@' AC_SUBSTs in macro names.
 
 New in 1.4b:
 * Faster AM_INIT_AUTOMAKE (requires update of `missing' script)
index 9e7007d..caed496 100644 (file)
@@ -472,10 +472,12 @@ Sometimes a Makefile variable name is derived from some text the user
 supplies.  For instance, program names are rewritten into Makefile macro
 names.  Automake canonicalizes this text, so that it does not have to
 follow Makefile macro naming rules.  All characters in the name except
-for letters, numbers, and the underscore are turned into underscores
-when making macro references.  For example, if your program is named
-@code{sniff-glue}, the derived variable name would be
-@code{sniff_glue_SOURCES}, not @code{sniff-glue_SOURCES}.
+for letters, numbers, the strudel (@@), and the underscore are turned into
+underscores when making macro references.  For example, if your program
+is named @code{sniff-glue}, the derived variable name would be
+@code{sniff_glue_SOURCES}, not @code{sniff-glue_SOURCES}.  The strudel
+is an addition since Automake 1.4c, to make the use of Autoconf
+substitutions in macro names less obfuscating.
 
 
 @node User Variables, , Canonicalization, Generalities
index b5618f1..de4a0f4 100644 (file)
--- a/stamp-vti
+++ b/stamp-vti
@@ -1,4 +1,4 @@
-@set UPDATED 6 May 2001
+@set UPDATED 8 May 2001
 @set UPDATED-MONTH May 2001
 @set EDITION 1.4e
 @set VERSION 1.4e
index b5618f1..de4a0f4 100644 (file)
@@ -1,4 +1,4 @@
-@set UPDATED 6 May 2001
+@set UPDATED 8 May 2001
 @set UPDATED-MONTH May 2001
 @set EDITION 1.4e
 @set VERSION 1.4e