* gnulib: Update to latest. * m4/gnulib-cache.m4: Regenerate. * src/builtin.c (m4_ifelse): Use STREQ.
Signed-off-by: Eric Blake <[email protected]> --- It's a new month; time for newer gnulib. In particular, this fixes several (but not all) test failures on Haiku Alpha 2. ChangeLog | 7 +++++++ gnulib | 2 +- m4/gnulib-cache.m4 | 2 +- src/builtin.c | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index abaae77..71ec8ae 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2011-02-01 Eric Blake <[email protected]> + + maint: update to latest gnulib + * gnulib: Update to latest. + * m4/gnulib-cache.m4: Regenerate. + * src/builtin.c (m4_ifelse): Use STREQ. + 2011-01-25 Eric Blake <[email protected]> maint: reflect recent copyright assignments diff --git a/gnulib b/gnulib index a2e8447..a036b76 160000 --- a/gnulib +++ b/gnulib @@ -1 +1 @@ -Subproject commit a2e8447d6b8abe23504f4f2d4757a60a2e8bee54 +Subproject commit a036b7684f9671ee53999773785d1865603c3849 diff --git a/m4/gnulib-cache.m4 b/m4/gnulib-cache.m4 index 6ddefc5..552a393 100644 --- a/m4/gnulib-cache.m4 +++ b/m4/gnulib-cache.m4 @@ -1,4 +1,4 @@ -# Copyright (C) 2002-2010 Free Software Foundation, Inc. +# Copyright (C) 2002-2011 Free Software Foundation, Inc. # # This file is free software, distributed under the terms of the GNU # General Public License. As a special exception to the GNU General diff --git a/src/builtin.c b/src/builtin.c index 3787e70..8ff03e8 100644 --- a/src/builtin.c +++ b/src/builtin.c @@ -661,7 +661,7 @@ m4_ifelse (struct obstack *obs, int argc, token_data **argv) result = NULL; while (result == NULL) - if (strcmp (ARG (0), ARG (1)) == 0) + if (STREQ (ARG (0), ARG (1))) result = ARG (2); else -- 1.7.3.5 _______________________________________________ M4-patches mailing list [email protected] http://lists.gnu.org/mailman/listinfo/m4-patches
