diff --git a/.gitignore b/.gitignore index 506f04ab07..c8d93d8d08 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ *.l[oa] *.opensdf *.orig +*.pyc *.sdf *.suo core diff --git a/gyp_uv.py b/gyp_uv.py index 651bd095f1..4ba69167d9 100755 --- a/gyp_uv.py +++ b/gyp_uv.py @@ -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()