automake-commit
[Top][All Lists]
Advanced

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

[Automake-commit] [SCM] GNU Automake branch, master, updated. Release-1-


From: Ralf Wildenhues
Subject: [Automake-commit] [SCM] GNU Automake branch, master, updated. Release-1-10-126-g2fd5b09
Date: Tue, 19 Feb 2008 21:19:31 +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=2fd5b0995be16cc6bba6ee5ec9e52f86ce97add8

The branch, master has been updated
       via  2fd5b0995be16cc6bba6ee5ec9e52f86ce97add8 (commit)
       via  67cc7d167b5cb406695fc9bf3e7dc82e2b444c26 (commit)
      from  408b7330dc4db1725b858d5e7a4140ec6fe28b00 (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 2fd5b0995be16cc6bba6ee5ec9e52f86ce97add8
Author: Ralf Wildenhues <address@hidden>
Date:   Tue Feb 19 22:15:03 2008 +0100

    PR automake/498
    * m4/options.m4 (_AM_SET_OPTIONS): Use m4_foreach_w instead of
    obsolete AC_FOREACH.
    Report by NightStrike and address@hidden

commit 67cc7d167b5cb406695fc9bf3e7dc82e2b444c26
Author: Ralf Wildenhues <address@hidden>
Date:   Tue Feb 19 22:14:50 2008 +0100

    Regenerate.

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

Summary of changes:
 ChangeLog                |    7 +++++++
 Makefile.in              |    2 +-
 doc/Makefile.in          |    2 +-
 lib/Automake/Makefile.in |    2 +-
 lib/Makefile.in          |    2 +-
 m4/options.m4            |    6 +++---
 6 files changed, 14 insertions(+), 7 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 2044198..c2ffb48 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2008-02-19  Ralf Wildenhues  <address@hidden>
+
+       PR automake/498
+       * m4/options.m4 (_AM_SET_OPTIONS): Use m4_foreach_w instead of
+       obsolete AC_FOREACH.
+       Report by NightStrike and address@hidden
+
 2008-02-17  Colin Watson  <address@hidden>  (tiny change)
 
        * lib/am/tags.am (ID): Fix typo in workaround for old awk.
diff --git a/Makefile.in b/Makefile.in
index 657cdbf..ebef98c 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -358,7 +358,7 @@ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
        unique=`for i in $$list; do \
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
          done | \
-         $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \
+         $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
              END { if (nonempty) { for (i in files) print i; }; }'`; \
        mkid -fID $$unique
 tags: TAGS
diff --git a/doc/Makefile.in b/doc/Makefile.in
index 07c9e6d..8a70dfb 100644
--- a/doc/Makefile.in
+++ b/doc/Makefile.in
@@ -406,7 +406,7 @@ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
        unique=`for i in $$list; do \
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
          done | \
-         $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \
+         $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
              END { if (nonempty) { for (i in files) print i; }; }'`; \
        mkid -fID $$unique
 tags: TAGS
diff --git a/lib/Automake/Makefile.in b/lib/Automake/Makefile.in
index 7d1300a..fec417b 100644
--- a/lib/Automake/Makefile.in
+++ b/lib/Automake/Makefile.in
@@ -362,7 +362,7 @@ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
        unique=`for i in $$list; do \
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
          done | \
-         $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \
+         $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
              END { if (nonempty) { for (i in files) print i; }; }'`; \
        mkid -fID $$unique
 tags: TAGS
diff --git a/lib/Makefile.in b/lib/Makefile.in
index 752bdbd..e9aaedf 100644
--- a/lib/Makefile.in
+++ b/lib/Makefile.in
@@ -338,7 +338,7 @@ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
        unique=`for i in $$list; do \
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
          done | \
-         $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \
+         $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
              END { if (nonempty) { for (i in files) print i; }; }'`; \
        mkid -fID $$unique
 tags: TAGS
diff --git a/m4/options.m4 b/m4/options.m4
index 34c086d..8e5017e 100644
--- a/m4/options.m4
+++ b/m4/options.m4
@@ -1,12 +1,12 @@
 # Helper functions for option handling.                     -*- Autoconf -*-
 
-# Copyright (C) 2001, 2002, 2003, 2005  Free Software Foundation, Inc.
+# Copyright (C) 2001, 2002, 2003, 2005, 2008  Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
 
-# serial 3
+# serial 4
 
 # _AM_MANGLE_OPTION(NAME)
 # -----------------------
@@ -23,7 +23,7 @@ AC_DEFUN([_AM_SET_OPTION],
 # ----------------------------------
 # OPTIONS is a space-separated list of Automake options.
 AC_DEFUN([_AM_SET_OPTIONS],
-[AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
+[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
 
 # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
 # -------------------------------------------


hooks/post-receive
--
GNU Automake




reply via email to

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