bug-automake
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Multiple vars in AC_SUBST not considered


From: Ralf Wildenhues
Subject: Re: Multiple vars in AC_SUBST not considered
Date: Mon, 14 Apr 2008 23:27:36 +0200
User-agent: Mutt/1.5.17+20080114 (2008-01-14)

Hello Jan,

* Jan Engelhardt wrote on Mon, Apr 14, 2008 at 09:21:13AM CEST:
> I observed that with a configure.ac with
> 
>       AC_SUBST([libfoo_CXXFLAGS libfoo_LIBS])

AC_SUBST is documented to only take one variable.  So please do

>       AC_SUBST([libfoo_CXXFLAGS])
>       AC_SUBST([libfoo_LIBS])

or something like
  m4_foreach([myvar], [libfoo_CXXFLAGS, libfoo_LIBS],
    [AC_SUBST(myvar)])

Cheers,
Ralf




reply via email to

[Prev in Thread] Current Thread [Next in Thread]