summaryrefslogtreecommitdiff
path: root/lib/spack/llnl/util/filesystem.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/spack/llnl/util/filesystem.py')
-rw-r--r--lib/spack/llnl/util/filesystem.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/spack/llnl/util/filesystem.py b/lib/spack/llnl/util/filesystem.py
index a161a64d2a..a5da826217 100644
--- a/lib/spack/llnl/util/filesystem.py
+++ b/lib/spack/llnl/util/filesystem.py
@@ -2055,22 +2055,22 @@ def find_libraries(libraries, root, shared=True, recursive=False):
raise TypeError(message)
if is_windows:
- static = "lib"
- shared = "dll"
+ static_ext = "lib"
+ shared_ext = "dll"
else:
# Used on both Linux and macOS
- static = "a"
- shared = "so"
+ static_ext = "a"
+ shared_ext = "so"
# Construct the right suffix for the library
if shared:
# Used on both Linux and macOS
- suffixes = [shared]
+ suffixes = [shared_ext]
if sys.platform == "darwin":
# Only used on macOS
suffixes.append("dylib")
else:
- suffixes = [static]
+ suffixes = [static_ext]
# List of libraries we are searching with suffixes
libraries = ["{0}.{1}".format(lib, suffix) for lib in libraries for suffix in suffixes]