From: Bruno Haible Date: Mon, 31 Jul 2006 15:57:25 +0000 (+0000) Subject: Avoid a sh syntax error. X-Git-Tag: 0.16.x-branchpoint~309 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e16df9cbaf85196983454239433be40033055e27;p=thirdparty%2Fgettext.git Avoid a sh syntax error. --- diff --git a/gettext-tools/m4/ChangeLog b/gettext-tools/m4/ChangeLog index c5f73df5b..3bca5050d 100644 --- a/gettext-tools/m4/ChangeLog +++ b/gettext-tools/m4/ChangeLog @@ -1,3 +1,8 @@ +2006-07-29 Bruno Haible + + * alloca.m4 (gl_PREREQ_ALLOCA): Add a dummy statement. Avoids a sh + syntax error. + 2006-07-29 Bruno Haible * relocatable.m4: Add comments. diff --git a/gettext-tools/m4/alloca.m4 b/gettext-tools/m4/alloca.m4 index 8c204436f..3ec1d2375 100644 --- a/gettext-tools/m4/alloca.m4 +++ b/gettext-tools/m4/alloca.m4 @@ -1,5 +1,5 @@ -# alloca.m4 serial 2 (gettext-0.12) -dnl Copyright (C) 2002-2003 Free Software Foundation, Inc. +# alloca.m4 serial 3 (gettext-0.15.1) +dnl Copyright (C) 2002-2003, 2006 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. @@ -31,4 +31,5 @@ AC_DEFUN([gl_FUNC_ALLOCA], # STACK_DIRECTION is already handled by AC_FUNC_ALLOCA. AC_DEFUN([gl_PREREQ_ALLOCA], [ AC_CHECK_HEADERS_ONCE(stdlib.h string.h) + : ])