summaryrefslogtreecommitdiff
path: root/deps/uv/gyp_uv
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2012-01-23 13:35:36 +0100
committerBen Noordhuis <info@bnoordhuis.nl>2012-01-23 13:35:36 +0100
commit2433eeb3850a91feb99bab530cb7183800166390 (patch)
tree47ea15f29685192cd61089ed2add254307abe87c /deps/uv/gyp_uv
parentff512634acbf2ddd10f167a5600e2acba3484802 (diff)
downloadnode-2433eeb3850a91feb99bab530cb7183800166390.tar.gz
uv: upgrade to 1cca230
Diffstat (limited to 'deps/uv/gyp_uv')
-rwxr-xr-xdeps/uv/gyp_uv4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/uv/gyp_uv b/deps/uv/gyp_uv
index a7a9689c2..225c9768d 100755
--- a/deps/uv/gyp_uv
+++ b/deps/uv/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')