package nccl: Fix install_targets for verison 2.3.5-5: (#9623)
This commit is contained in:
parent
b1e84d4cdc
commit
84e6fb3a64
1 changed files with 4 additions and 1 deletions
|
@ -26,4 +26,7 @@ def build_targets(self):
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def install_targets(self):
|
def install_targets(self):
|
||||||
return ['PREFIX={0}'.format(self.prefix), 'install']
|
if self.version >= Version('2.3.5-5'):
|
||||||
|
return ['PREFIX={0}'.format(self.prefix), 'src.install']
|
||||||
|
else:
|
||||||
|
return ['PREFIX={0}'.format(self.prefix), 'install']
|
||||||
|
|
Loading…
Reference in a new issue