Skip to content

Commit

Permalink
ensure correct compiler command/flags are used for SAMtools
Browse files Browse the repository at this point in the history
  • Loading branch information
boegel committed Jul 6, 2016
1 parent fda89fe commit 4a2f5be
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions easybuild/easyblocks/s/samtools.py
Expand Up @@ -70,10 +70,10 @@ def __init__(self, *args, **kwargs):
self.lib_files = ["libbam.a"]

def configure_step(self):
"""
No configure
"""
pass
"""Ensure correct compiler command & flags are used via arguments to 'make' build command"""
for var in ['CC', 'CFLAGS']:
if var in os.environ:
self.cfg.update('buildopts', '%s="%s"' % (var, os.getenv(var)))

def install_step(self):
"""
Expand Down

0 comments on commit 4a2f5be

Please sign in to comment.