We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95ffbab commit 997da04Copy full SHA for 997da04
easybuild/easyblocks/b/bzip2.py
@@ -88,7 +88,7 @@ def install_step(self):
88
89
# create (un)versioned symlinks for libbz2.so.X.Y.Z
90
split_ver = self.version.split('.')
91
- sym_exts = ['.' + '.'.join(split_ver[-3:x]) for x in range(1,3)] # -> e.g. ['.1', '.1.0'] for version 1.0.8
+ sym_exts = ['.' + '.'.join(split_ver[-3:x]) for x in range(1, 3)] # e.g. ['.1', '.1.0'] for version 1.0.8
92
cwd = os.getcwd()
93
for sym in [f'libbz2.{shlib_ext}{x}' for x in [''] + sym_exts]:
94
if not os.path.exists(os.path.join(libdir, sym)):
0 commit comments