aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/buildparser.cpp4
1 files changed, 3 insertions, 1 deletions
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
193 } 193 }
194 else 194 else
195 { 195 {
196 lOut.push_back( (*i).first ); 196 StringList l;
197 l.push_back( sCont );
198 lOut.push_back( bld.replVars( (*i).first, &l, mExtra ) );
197 } 199 }
198 } 200 }
199 201