Merge pull request #264 from nolta/typos

fix a few comment typos
This commit is contained in:
Todd Gamblin 2015-12-22 07:56:54 -08:00
commit 157e42de22
2 changed files with 2 additions and 2 deletions

View file

@ -150,7 +150,7 @@ def main():
sys.stderr.write('\n')
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:
sys.exit(0)
elif isinstance(return_val, int):

View file

@ -145,7 +145,7 @@ def add_env_path(path):
# Install root prefix
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
# sure that builds never pull in unintended external dependencies.
pop_keys(os.environ, "LD_LIBRARY_PATH", "LD_RUN_PATH", "DYLD_LIBRARY_PATH")