Enable vnum for libraries created in the source directory

This commit is contained in:
Thomas Nagy 2016-01-30 11:39:18 +01:00
parent 5b82ce528c
commit 361e4b7730
No known key found for this signature in database
GPG Key ID: 67A565EDFDF90E64
1 changed files with 2 additions and 2 deletions

View File

@ -535,9 +535,9 @@ def apply_vnum(self):
# the following task is just to enable execution from the build dir :-/
if self.env.DEST_OS != 'openbsd':
outs = [node.parent.find_or_declare(name3)]
outs = [node.parent.make_node(name3)]
if name2 != name3:
outs.append(node.parent.find_or_declare(name2))
outs.append(node.parent.make_node(name2))
self.create_task('vnum', node, outs)
if getattr(self, 'install_task', None):