mpibash: move to autotools (#6253)

This commit is contained in:
Christoph Junghans
2017-11-13 10:48:31 -07:00
committed by GitHub
parent 02335fa849
commit bde727e187
2 changed files with 20 additions and 20 deletions

View File

@@ -49,3 +49,12 @@ def configure_args(self):
def check(self):
make('tests')
@property
def install_targets(self):
args = ['install']
if self.spec.satisfies('@4.4:'):
args.append('install-headers')
return args