bowtie2: fix installation prefix (#20205)
The bowtie2 Makefile uses `prefix`, not `PREFIX`, for versions before v2.4. Credit to @tkameyama Co-authored-by: george.hartzell <george.hartzell@sana.com>
This commit is contained in:
parent
badf3368ad
commit
9afaaa3c25
@ -66,4 +66,7 @@ def build_targets(self):
|
||||
|
||||
@property
|
||||
def install_targets(self):
|
||||
return ['PREFIX={0}'.format(self.prefix), 'install']
|
||||
if self.spec.satisfies('@:2.3.9'):
|
||||
return ['prefix={0}'.format(self.prefix), 'install']
|
||||
else:
|
||||
return ['PREFIX={0}'.format(self.prefix), 'install']
|
||||
|
Loading…
Reference in New Issue
Block a user