Re: [BUG] Check for AC_CONFIG_AUX_DIR is incorrect

2007-03-17 Thread Jim Meyering
Jim Meyering <[EMAIL PROTECTED]> wrote: ... > +if test $found_aux_dir = no; then >{ > echo "$0: expected line not found in configure.ac. Add the following:" > >&2 > -echo " AC_CONFIG_AUX_DIR($build_aux)" >&2. > +echo " AC_CONFIG_AUX_DIR([$build_aux])" >&2. >} Whoops. I've

Re: [BUG] Check for AC_CONFIG_AUX_DIR is incorrect

2007-03-17 Thread Jim Meyering
"Alfred M. Szmidt" <[EMAIL PROTECTED]> wrote: > The check for AC_CONFIG_AUX_DIR is incorrect, since autoconf (really, > m4) allows one to quote arguments. So if ones configure.ac contains > the following valid code: > > AC_CONFIG_AUX_DIR([build-aux]) > > the check will fail. Not entierly sure how

[BUG] Check for AC_CONFIG_AUX_DIR is incorrect

2007-03-17 Thread Alfred M. Szmidt
Hey, The check for AC_CONFIG_AUX_DIR is incorrect, since autoconf (really, m4) allows one to quote arguments. So if ones configure.ac contains the following valid code: AC_CONFIG_AUX_DIR([build-aux]) the check will fail. Not entierly sure how to handle it since m4 allows one to set the quote c