diff options
Diffstat (limited to 'src/buildparser.cpp')
-rw-r--r-- | src/buildparser.cpp | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/src/buildparser.cpp b/src/buildparser.cpp index b8de35e..0aa409f 100644 --- a/src/buildparser.cpp +++ b/src/buildparser.cpp | |||
@@ -66,6 +66,7 @@ void BuildParser::addTargetInput() | |||
66 | lTargetTmp.back().second.lInput.first.end(), | 66 | lTargetTmp.back().second.lInput.first.end(), |
67 | lTmp.first.begin(), lTmp.first.end() | 67 | lTmp.first.begin(), lTmp.first.end() |
68 | ); | 68 | ); |
69 | lTargetTmp.back().second.lInput.second = lTmp.second; | ||
69 | } | 70 | } |
70 | 71 | ||
71 | void BuildParser::addTargetRequires() | 72 | void BuildParser::addTargetRequires() |
@@ -74,6 +75,7 @@ void BuildParser::addTargetRequires() | |||
74 | lTargetTmp.back().second.lRequires.first.end(), | 75 | lTargetTmp.back().second.lRequires.first.end(), |
75 | lTmp.first.begin(), lTmp.first.end() | 76 | lTmp.first.begin(), lTmp.first.end() |
76 | ); | 77 | ); |
78 | lTargetTmp.back().second.lRequires.second = lTmp.second; | ||
77 | } | 79 | } |
78 | 80 | ||
79 | void BuildParser::addTargetSet( const char *sVar, const char *sVal, int nHow ) | 81 | void BuildParser::addTargetSet( const char *sVar, const char *sVal, int nHow ) |
@@ -133,7 +135,7 @@ void BuildParser::filterList() | |||
133 | 135 | ||
134 | void BuildParser::buildListFilter( BuildList &lSrc ) | 136 | void BuildParser::buildListFilter( BuildList &lSrc ) |
135 | { | 137 | { |
136 | if( lSrc.second == NULL ) | 138 | if( lSrc.second == NULL ) |
137 | return; | 139 | return; |
138 | 140 | ||
139 | StringList lTmp2; | 141 | StringList lTmp2; |
@@ -164,6 +166,13 @@ StringList BuildParser::buildToStringList( const BuildList &lSrc, const StringLi | |||
164 | } | 166 | } |
165 | } | 167 | } |
166 | 168 | ||
169 | if( lSrc.second ) | ||
170 | { | ||
171 | StringList lTmp; | ||
172 | lSrc.second->execute( pPass, lOut, lTmp ); | ||
173 | lOut.swap( lTmp ); | ||
174 | } | ||
175 | |||
167 | return lOut; | 176 | return lOut; |
168 | } | 177 | } |
169 | 178 | ||
@@ -186,6 +195,13 @@ StringList BuildParser::buildToStringListDup( const BuildList &lSrc, const Strin | |||
186 | } | 195 | } |
187 | } | 196 | } |
188 | 197 | ||
198 | if( lSrc.second ) | ||
199 | { | ||
200 | StringList lTmp; | ||
201 | lSrc.second->execute( pPass, lOut, lTmp ); | ||
202 | lOut.swap( lTmp ); | ||
203 | } | ||
204 | |||
189 | return lOut; | 205 | return lOut; |
190 | } | 206 | } |
191 | 207 | ||