Skip to content

Commit e15a3f0

Browse files
committed
Merge branch 'binary_packages' of github.com:gartung/spack into binary_packages
2 parents 6000d15 + 41722b8 commit e15a3f0

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

lib/spack/spack/package.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1177,7 +1177,7 @@ def do_install(self,
11771177

11781178
tty.msg("Installing %s" % self.name)
11791179

1180-
fetch_binary=kwargs.pop('fetch_binary', 'never')
1180+
fetch_binary = kwargs.pop('fetch_binary', 'never')
11811181
# First, install dependencies recursively.
11821182
if install_deps:
11831183
for dep in self.spec.dependencies():
@@ -1212,7 +1212,7 @@ def do_install(self,
12121212
else:
12131213
tty.warn("No binary package for %s found."
12141214
% self.name)
1215-
# Set parallelism before starting build.
1215+
# Set parallelism before starting build.
12161216
self.make_jobs = make_jobs
12171217

12181218
# Then install the package itself.

lib/spack/spack/relocate.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def modify_macho_object(path_name, old_dir, new_dir):
6161
6262
the old install dir in LC_RPATH is replaced with the new install dir using
6363
install_name_tool -rpath old new binary
64-
64+
6565
"""
6666
command = which('otool')
6767
output = command("-l", path_name, output=str, err=str)
@@ -195,7 +195,7 @@ def relocate_binary(path_name, old_dir, new_dir, patchelf_executable):
195195
orig_rpaths = get_existing_elf_rpaths(path_name, patchelf_executable)
196196
new_rpaths = substitute_rpath(orig_rpaths, old_dir, new_dir)
197197
modify_elf_object(path_name, orig_rpaths, new_rpaths,
198-
patchelf_executable)
198+
patchelf_executable)
199199
else:
200200
tty.die("Relocation not implemented for %s" % platform.system())
201201

0 commit comments

Comments
 (0)