From 001a817e2986789b53b22e42f460d621f97302c2 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Wed, 11 Oct 2006 15:44:08 +0000 Subject: You can now use variables within list items that are not functions, funny how\ long it took for that one to crop up... --- src/buildparser.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/buildparser.cpp') diff --git a/src/buildparser.cpp b/src/buildparser.cpp index a9e33e5..1c4f041 100644 --- a/src/buildparser.cpp +++ b/src/buildparser.cpp @@ -193,7 +193,9 @@ StringList BuildParser::buildToStringListDup( const BuildList &lSrc, const Strin } else { - lOut.push_back( (*i).first ); + StringList l; + l.push_back( sCont ); + lOut.push_back( bld.replVars( (*i).first, &l, mExtra ) ); } } -- cgit v1.2.3