From ba0892ba910bb6c60ac4e9ed2df2c37f67efdea7 Mon Sep 17 00:00:00 2001 From: Nathan Rajlich Date: Mon, 27 Feb 2012 13:54:30 -0800 Subject: [PATCH] build: build addons into the "build" dir instead of "out" This matches the old node-waf system. Having two different dirs for this stuff is dumb. --- tools/gyp_addon | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/gyp_addon b/tools/gyp_addon index 35c4158152..f672f9ea66 100755 --- a/tools/gyp_addon +++ b/tools/gyp_addon @@ -5,9 +5,9 @@ import sys script_dir = os.path.dirname(__file__) node_root = os.path.abspath(os.path.join(script_dir, os.pardir)) if sys.platform == 'win32': - output_dir = os.path.join(os.getcwd(), 'out') + output_dir = os.path.join(os.getcwd(), 'build') else: - output_dir = 'out' + output_dir = 'build' sys.path.insert(0, os.path.join(node_root, 'tools', 'gyp', 'pylib')) import gyp