Skip to content

Commit

Permalink
BUILD: fix runtests.py option, fix previous changeset
Browse files Browse the repository at this point in the history
  • Loading branch information
mattip committed Sep 20, 2019
1 parent 4729f3f commit f548774
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion numpy/core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ def generate_config_h(ext, build_dir):
#endif
"""))

log.info('File:', target)
log.info('File: %s' % target)
with open(target) as target_f:
log.info(target_f.read())
log.info('EOF')
Expand Down
4 changes: 2 additions & 2 deletions runtests.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def main(argv):
parser = ArgumentParser(usage=__doc__.lstrip())
parser.add_argument("--verbose", "-v", action="count", default=1,
help="more verbosity")
parser.add_argument("--debug_configure", action="store_true",
parser.add_argument("--debug-configure", action="store_true",
help="show all compiler output during system configuration")
parser.add_argument("--no-build", "-n", action="store_true", default=False,
help="do not build the project (use system installed version)")
Expand Down Expand Up @@ -369,7 +369,7 @@ def build_project(args):
if args.parallel > 1:
cmd += ["-j", str(args.parallel)]
if args.debug_configure:
cmd += ["--debug_configure"]
cmd += ["--debug-configure"]
# Install; avoid producing eggs so numpy can be imported from dst_dir.
cmd += ['install', '--prefix=' + dst_dir,
'--single-version-externally-managed',
Expand Down

0 comments on commit f548774

Please sign in to comment.