On Oct 11, 2000, Morten Eriksen <[EMAIL PROTECTED]> wrote:

> Autoconf straight out of CVS will complain about "backquotes and
> doublequotes should not be backslashed" when expanding the macro code
> of _LT_AC_LTCONFIG_HACK libtool.m4.

The problem is that CVS autoconf changes the way backquotes are
interpreted, and issues a warning (even though it works correctly) in
case they're written the way it used to work with autoconf 2.13.

Replacing \` with ' is even worse, because then the shell won't
expand the variable within `', as we want it.

The only way to do it so that it works with both autoconf 2.13 and CVS
autoconf, without triggering the warning in CVS autoconf, is this
(from CVS automake's missing.m4):

  am_backtick='`'
  AC_MSG_WARN([${am_backtick}$VAR' ...])

-- 
Alexandre Oliva   Enjoy Guarana', see http://www.ic.unicamp.br/~oliva/
Red Hat GCC Developer                  aoliva@{cygnus.com, redhat.com}
CS PhD student at IC-Unicamp        oliva@{lsd.ic.unicamp.br, gnu.org}
Free Software Evangelist    *Please* write to mailing lists, not to me

_______________________________________________
Libtool mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/libtool

Reply via email to