[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: overriding cxxld?
From: |
Stepan Kasal |
Subject: |
Re: overriding cxxld? |
Date: |
Mon, 15 Aug 2005 12:30:15 +0200 |
User-agent: |
Mutt/1.4.1i |
Hello,
On Sun, Aug 14, 2005 at 11:35:34PM +0200, Karl Berry wrote:
> If I could change the configure.ac or Makefile.am source in the
> subproduct to change the setting of CXXLD in the final generated
> Makefile, that would work.
that's easy: add something like
if special-need; then
AC_SUBST([CXXLD], [cxxhack])
else
AC_SUBST([CXXLD], ['$(CXX)'])
fi
to configure.ac.
All AC_SUBSTed variables are available in automake genreated makefiles.
And this takes precedence over values which would Automake otherwise
supply.
Does this solve your problem?
Have a nice day,
Stepan