Skip to content
Snippets Groups Projects
Commit 61f07b0c authored by Mike Nolta's avatar Mike Nolta
Browse files

fix a few comment typos

parent c3aaf005
No related branches found
No related tags found
No related merge requests found
...@@ -150,7 +150,7 @@ def main(): ...@@ -150,7 +150,7 @@ def main():
sys.stderr.write('\n') sys.stderr.write('\n')
tty.die("Keyboard interrupt.") tty.die("Keyboard interrupt.")
# Allow commands to return values if they want to exit with some ohter code. # Allow commands to return values if they want to exit with some other code.
if return_val is None: if return_val is None:
sys.exit(0) sys.exit(0)
elif isinstance(return_val, int): elif isinstance(return_val, int):
......
...@@ -145,7 +145,7 @@ def add_env_path(path): ...@@ -145,7 +145,7 @@ def add_env_path(path):
# Install root prefix # Install root prefix
os.environ[SPACK_INSTALL] = spack.install_path os.environ[SPACK_INSTALL] = spack.install_path
# Remove these vars from the environment during build becaus they # Remove these vars from the environment during build because they
# can affect how some packages find libraries. We want to make # can affect how some packages find libraries. We want to make
# sure that builds never pull in unintended external dependencies. # sure that builds never pull in unintended external dependencies.
pop_keys(os.environ, "LD_LIBRARY_PATH", "LD_RUN_PATH", "DYLD_LIBRARY_PATH") pop_keys(os.environ, "LD_LIBRARY_PATH", "LD_RUN_PATH", "DYLD_LIBRARY_PATH")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment