autoconf-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU Autoconf source repository branch, master, updated. v2.65-26-g


From: Eric Blake
Subject: [SCM] GNU Autoconf source repository branch, master, updated. v2.65-26-gd99296e
Date: Fri, 08 Jan 2010 21:39:13 +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 Autoconf source repository".

http://git.sv.gnu.org/gitweb/?p=autoconf.git;a=commitdiff;h=d99296e4261bbfc566069dcf95f02d0fa70be72c

The branch, master has been updated
       via  d99296e4261bbfc566069dcf95f02d0fa70be72c (commit)
       via  ed2446ed307d7882c67accf5f528a65787b26a07 (commit)
      from  87ccb0b79ce93289a680cecf793cd96ca2ed4452 (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 d99296e4261bbfc566069dcf95f02d0fa70be72c
Author: Eric Blake <address@hidden>
Date:   Thu Jan 7 10:58:24 2010 -0700

    Make autotest example act better with automake.
    
    * doc/autoconf.texi (Making testsuite Scripts): Rely on automake
    feature for recommended autotest snippet, following our own use.
    
    Signed-off-by: Eric Blake <address@hidden>

commit ed2446ed307d7882c67accf5f528a65787b26a07
Author: Eric Blake <address@hidden>
Date:   Fri Jan 8 06:52:58 2010 -0700

    Clarify language on handling of opening parenthesis.
    
    * doc/autoconf.texi (Autoconf Language): Give an example of
    improper argument passing.
    * THANKS: Update.
    Reported by Juan Carlos Hurtado.
    
    Signed-off-by: Eric Blake <address@hidden>

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog         |   12 ++++++++++++
 THANKS            |    1 +
 doc/autoconf.texi |   27 ++++++++++++++++++++-------
 3 files changed, 33 insertions(+), 7 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index c69b906..83583bc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+2010-01-08  Eric Blake  <address@hidden>
+
+       Make autotest example act better with automake.
+       * doc/autoconf.texi (Making testsuite Scripts): Rely on automake
+       feature for recommended autotest snippet, following our own use.
+
+       Clarify language on handling of opening parenthesis.
+       * doc/autoconf.texi (Autoconf Language): Give an example of
+       improper argument passing.
+       * THANKS: Update.
+       Reported by Juan Carlos Hurtado.
+
 2010-01-06  Ralf Wildenhues  <address@hidden>
 
        Don't fail autom4te preselection test due to different Automake.
diff --git a/THANKS b/THANKS
index 8d91a64..ddb1db4 100644
--- a/THANKS
+++ b/THANKS
@@ -196,6 +196,7 @@ Jonathan Kamens             address@hidden
 Josef Tran                  address@hidden
 Josef Vukovic               address@hidden
 Joseph S. Myers             address@hidden
+Juan Carlos Hurtado         address@hidden
 Jules Colding               address@hidden
 Julian Onions               address@hidden
 Julien Danjou               address@hidden
diff --git a/doc/autoconf.texi b/doc/autoconf.texi
index cc19284..d484910 100644
--- a/doc/autoconf.texi
+++ b/doc/autoconf.texi
@@ -1132,7 +1132,14 @@ need a means to distinguish literal strings from text to 
be expanded:
 quotation.
 
 When calling macros that take arguments, there must not be any white
-space between the macro name and the open parenthesis.  Arguments should
+space between the macro name and the open parenthesis.
+
address@hidden
+AC_INIT ([oops], [1.0]) # incorrect
+AC_INIT([hello], [1,0]) # good
address@hidden example
+
+Arguments should
 be enclosed within the quote characters @samp{[} and @samp{]}, and be
 separated by commas.  Any leading blanks or newlines in arguments are ignored,
 unless they are quoted.  You should always quote an argument that
@@ -23745,17 +23752,17 @@ $(srcdir)/package.m4: $(top_srcdir)/configure.ac
         :;@{ \
           echo '# Signature of the current package.' && \
           echo 'm4_define([AT_PACKAGE_NAME],' && \
-          echo '  [@@PACKAGE_NAME@@])' && \
+          echo '  [$(PACKAGE_NAME)])' && \
           echo 'm4_define([AT_PACKAGE_TARNAME],' && \
-          echo '  [@@PACKAGE_TARNAME@@])' && \
+          echo '  [$(PACKAGE_TARNAME)])' && \
           echo 'm4_define([AT_PACKAGE_VERSION],' && \
-          echo '  [@@PACKAGE_VERSION@@])' && \
+          echo '  [$(PACKAGE_VERSION)])' && \
           echo 'm4_define([AT_PACKAGE_STRING],' && \
-          echo '  [@@PACKAGE_STRING@@])' && \
+          echo '  [$(PACKAGE_STRING)])' && \
           echo 'm4_define([AT_PACKAGE_BUGREPORT],' && \
-          echo '  [@@PACKAGE_BUGREPORT@@])'; \
+          echo '  [$(PACKAGE_BUGREPORT)])'; \
           echo 'm4_define([AT_PACKAGE_URL],' && \
-          echo '  [@@PACKAGE_URL@@])'; \
+          echo '  [$(PACKAGE_URL)])'; \
         @} >'$(srcdir)/package.m4'
 
 EXTRA_DIST = testsuite.at $(srcdir)/package.m4 $(TESTSUITE) atlocal.in
@@ -23794,6 +23801,12 @@ the following:
 
 @example
 subdir = tests
+PACKAGE_NAME = @@PACKAGE_NAME@@
+PACKAGE_TARNAME = @@PACKAGE_TARNAME@@
+PACKAGE_VERSION = @@PACKAGE_VERSION@@
+PACKAGE_STRING = @@PACKAGE_STRING@@
+PACKAGE_BUGREPORT = @@PACKAGE_BUGREPORT@@
+PACKAGE_URL = @@PACKAGE_URL@@
 
 atconfig: $(top_builddir)/config.status
         cd $(top_builddir) && \


hooks/post-receive
-- 
GNU Autoconf source repository




reply via email to

[Prev in Thread] Current Thread [Next in Thread]