mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-22 09:57:15 +01:00
Issue 1320, do not propagate external libraries uselib vars
This commit is contained in:
parent
e20207811f
commit
e5cd63a670
@ -1,3 +1,8 @@
|
||||
NEW IN WAF 1.8.0
|
||||
----------------
|
||||
* Do not propagate external static libraries uselib vars #1320
|
||||
*
|
||||
|
||||
NEW IN WAF 1.7.11
|
||||
-----------------
|
||||
* Node.delete remove empty folders #1278
|
||||
|
@ -248,7 +248,9 @@ def use_rec(self, name, **kw):
|
||||
|
||||
p = self.tmp_use_prec
|
||||
for x in self.to_list(getattr(y, 'use', [])):
|
||||
try:
|
||||
if self.env["STLIB_" + x]:
|
||||
continue
|
||||
try:
|
||||
p[x].append(name)
|
||||
except KeyError:
|
||||
p[x] = [name]
|
||||
|
Loading…
Reference in New Issue
Block a user