Skip to content

Commit

Permalink
build: make ./gyp_uv.py -f eclipse work
Browse files Browse the repository at this point in the history
The eclipse backend (like the ninja backend) does not support the
--generator_output switch.
  • Loading branch information
bnoordhuis committed Nov 27, 2013
1 parent 74457d0 commit 7bb7371
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gyp_uv.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def run_gyp(args):
if sys.platform != 'win32':
if '-f' not in args:
args.extend('-f make'.split())
if 'ninja' not in args:
if 'eclipse' not in args and 'ninja' not in args:
args.extend(['-Goutput_dir=' + output_dir])
args.extend(['--generator-output', output_dir])
(major, minor), is_clang = compiler_version()
Expand Down

0 comments on commit 7bb7371

Please sign in to comment.