[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Automake-commit] [SCM] GNU Automake branch, branch-1-10, updated. Relea
From: |
Ralf Wildenhues |
Subject: |
[Automake-commit] [SCM] GNU Automake branch, branch-1-10, updated. Release-1-10-1-10-g7a3a15a |
Date: |
Tue, 19 Feb 2008 21:19:28 +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=7a3a15a9128108193bf686aeec519c3594a4c095
The branch, branch-1-10 has been updated
via 7a3a15a9128108193bf686aeec519c3594a4c095 (commit)
via c926e9031933ff9067e354945092fea84b8f3307 (commit)
from 9dbc27b4031720a9d2dd28714642d1fc394a4143 (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 7a3a15a9128108193bf686aeec519c3594a4c095
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 c926e9031933ff9067e354945092fea84b8f3307
Author: Ralf Wildenhues <address@hidden>
Date: Tue Feb 19 22:15:41 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 cec24b5..09898c7 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 4ac36dd..12c7083 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -331,7 +331,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 0d0b5cb..34340a7 100644
--- a/doc/Makefile.in
+++ b/doc/Makefile.in
@@ -404,7 +404,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 81686ea..92de495 100644
--- a/lib/Automake/Makefile.in
+++ b/lib/Automake/Makefile.in
@@ -335,7 +335,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 4b7090d..d50ab43 100644
--- a/lib/Makefile.in
+++ b/lib/Makefile.in
@@ -311,7 +311,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
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Automake-commit] [SCM] GNU Automake branch, branch-1-10, updated. Release-1-10-1-10-g7a3a15a,
Ralf Wildenhues <=