From 646c80bb41acf9f8cadbc487f7b360b3462e2c26 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Thu, 19 Jan 2012 15:01:23 +0100 Subject: [PATCH] build: generate Makefiles on OS X --- gyp_uv | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gyp_uv b/gyp_uv index a7a9689c..225c9768 100755 --- a/gyp_uv +++ b/gyp_uv @@ -45,12 +45,12 @@ if __name__ == '__main__': # There's a bug with windows which doesn't allow this feature. if sys.platform != 'win32': - # Tell gyp to write the Makefiles into output_dir args.extend(['--generator-output', output_dir]) - # Tell make to write its output into the same dir args.extend(['-Goutput_dir=' + output_dir]) + # Create Makefiles, not XCode projects + args.extend('-f make'.split()) args.append('-Dtarget_arch=ia32') args.append('-Dcomponent=static_library')