Hi, I recently upgraded to a newer automake, and I started to get this warning.
> $ ./autoregen.sh > config/readline_check_version.m4:1: warning: underquoted definition > of BASH_CHECK_LIB_TERMCAP > run info '(automake)Extending aclocal' > or see > http://sources.redhat.com/automake/automake.html#Extending-aclocal > config/readline_check_version.m4:47: warning: underquoted definition > of RL_LIB_READLINE_VERSION If I make the below patch, things work. Should this be necesary? Thanks, Bob Rossi Index: config/readline_check_version.m4 =================================================================== RCS file: /cvsroot/cgdb/cgdb/config/readline_check_version.m4,v retrieving revision 1.1 diff -u -r1.1 readline_check_version.m4 --- config/readline_check_version.m4 3 Aug 2005 13:20:46 -0000 1.1 +++ config/readline_check_version.m4 30 Dec 2005 04:16:35 -0000 @@ -1,4 +1,4 @@ -AC_DEFUN(BASH_CHECK_LIB_TERMCAP, +AC_DEFUN([BASH_CHECK_LIB_TERMCAP], [ if test "X$bash_cv_termcap_lib" = "X"; then _bash_needmsg=yes @@ -44,7 +44,7 @@ dnl AC_PROG_CC dnl BASH_CHECK_LIB_TERMCAP -AC_DEFUN(RL_LIB_READLINE_VERSION, +AC_DEFUN([RL_LIB_READLINE_VERSION], [ AC_REQUIRE([BASH_CHECK_LIB_TERMCAP])