$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-build] Doc build failure on release branch
From: Steve M. Robbins (steve_at_[hidden])
Date: 2008-10-10 04:08:30
Vladimir,
On Fri, Oct 10, 2008 at 08:44:42AM +0400, Vladimir Prus wrote:
> On Thursday 09 October 2008 18:21:36 Steve M. Robbins wrote:
> > On Thu, Oct 09, 2008 at 09:36:15AM +0400, Vladimir Prus wrote:
> >
> > > In fact, the original
> > >
> > > return "$(variable)=$(value)$(nl)export $(variable)$(nl)" ;
If it helps, there is another formulation that is just as portable as
the above: instead of a newline, put a space prior to export as follows.
return "$(variable)=$(value) export $(variable)$(nl)" ;
-Steve