Skip to content

Commit

Permalink
fix type in tensorflow.py when finding libdir of OpenSSL
Browse files Browse the repository at this point in the history
  • Loading branch information
akesandgren committed Aug 28, 2023
1 parent 5e79245 commit efc4dd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion easybuild/easyblocks/t/tensorflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ def get_system_libs(self):
incpath = os.path.join(openssl_root, 'include')
if os.path.exists(incpath):
cpaths.append(incpath)
libpath = get_software_libdir(dep_name)
libpath = get_software_libdir('OpenSSL')
if libpath:
libpaths.append(os.path.join(openssl_root, libpath))

Expand Down

0 comments on commit efc4dd5

Please sign in to comment.