aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2006-10-11 15:44:08 +0000
committerMike Buland <eichlan@xagasoft.com>2006-10-11 15:44:08 +0000
commit001a817e2986789b53b22e42f460d621f97302c2 (patch)
treefd6673b53b9e5eb3189b551191930f434f25c359
parentcad1d43f2555797499146c72603ef7c20e9afd80 (diff)
downloadbuild-001a817e2986789b53b22e42f460d621f97302c2.tar.gz
build-001a817e2986789b53b22e42f460d621f97302c2.tar.bz2
build-001a817e2986789b53b22e42f460d621f97302c2.tar.xz
build-001a817e2986789b53b22e42f460d621f97302c2.zip
You can now use variables within list items that are not functions, funny how\
long it took for that one to crop up...
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