Do not de-duplicate configuration flags passed in conf.check(stlib=) for consistency reasons

This commit is contained in:
Thomas Nagy 2016-07-02 19:58:17 +02:00
parent 0b2ae5fabd
commit 0189850710
No known key found for this signature in database
GPG Key ID: 49B4C67C05277AAA
1 changed files with 1 additions and 1 deletions

View File

@ -697,7 +697,7 @@ def post_check(self, *k, **kw):
for k in _vars:
x = k.lower()
if x in kw:
self.env.append_unique(k + '_' + kw['uselib_store'], kw[x])
self.env.append_value(k + '_' + kw['uselib_store'], kw[x])
return is_success
@conf