Skip to content

Commit

Permalink
Update eb_hooks.py
Browse files Browse the repository at this point in the history
Typo mistake
  • Loading branch information
TopRichard authored Oct 11, 2023
1 parent 89cc228 commit 5d80047
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions eb_hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ def set_Pillow_envvars(ec):
if ec.name == 'Pillow':
os.environ['CPATH'] = os.pathsep + EESSI_CPATH
os.environ['LIBRARY_PATH'] = os.pathsep + EESSI_LIB_PATH
print_msg("NOTE: For Pillow which has Szip as a dependancy, CPATH has been set to %s", os.getenv('CPATH'))
print_msg("NOTE: For Pillow which has Szip as a dependancy, LIBRARY_PATH has been set to %s", os.getenv('LIBRARY_PATH'))
ec.log.info("NOTE: For Pillow which has Szip as a dependancy, CPATH has been set to %s", os.getenv('CPATH'))
ec.log.info("NOTE: For Pillow which has Szip as a dependancy, LIBRARY_PATH has been set to %s", os.getenv('LIBRARY_PATH'))
print_msg("NOTE: For Pillow which has zlib as a dependancy, CPATH has been set to %s", os.getenv('CPATH'))
print_msg("NOTE: For Pillow which has zlib as a dependancy, LIBRARY_PATH has been set to %s", os.getenv('LIBRARY_PATH'))
ec.log.info("NOTE: For Pillow which has zlib as a dependancy, CPATH has been set to %s", os.getenv('CPATH'))
ec.log.info("NOTE: For Pillow which has zlib as a dependancy, LIBRARY_PATH has been set to %s", os.getenv('LIBRARY_PATH'))


def parse_hook(ec, *args, **kwargs):
Expand Down

0 comments on commit 5d80047

Please sign in to comment.