From: Paul Eggert Date: Mon, 30 Aug 2010 03:21:01 +0000 (-0700) Subject: AC_PROG_YACC: fix comment re what "yacc" stands for X-Git-Tag: v2.68~39 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=838bdfa56d79bd1cee7d489bdfd78771524c14f9;p=thirdparty%2Fautoconf.git AC_PROG_YACC: fix comment re what "yacc" stands for * lib/autoconf/programs.m4 (AC_PROG_YACC): YACC stands for "Yet Another Compiler Compiler", not "Yet Another C Compiler". Problem reported by Chris Long in . --- diff --git a/ChangeLog b/ChangeLog index 6accc2f6..8ddf0261 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2010-08-29 Paul Eggert + + AC_PROG_YACC: fix comment re what "yacc" stands for + * lib/autoconf/programs.m4 (AC_PROG_YACC): YACC stands for + "Yet Another Compiler Compiler", not "Yet Another C Compiler". + Problem reported by Chris Long in + . + 2010-08-27 Ralf Wildenhues Avoid long lines in testsuite script. diff --git a/lib/autoconf/programs.m4 b/lib/autoconf/programs.m4 index e7eeb6f8..c90d9b21 100644 --- a/lib/autoconf/programs.m4 +++ b/lib/autoconf/programs.m4 @@ -895,8 +895,8 @@ AN_PROGRAM([bison], [AC_PROG_YACC]) AC_DEFUN([AC_PROG_YACC], [AC_CHECK_PROGS(YACC, 'bison -y' byacc, yacc)dnl AC_ARG_VAR(YACC, -[The `Yet Another C Compiler' implementation to use. Defaults to the first -program found out of: `bison -y', `byacc', `yacc'.])dnl +[The `Yet Another Compiler Compiler' implementation to use. Defaults to +the first program found out of: `bison -y', `byacc', `yacc'.])dnl AC_ARG_VAR(YFLAGS, [The list of arguments that will be passed by default to $YACC. This script will default YFLAGS to the empty string to avoid a default value of `-d' given