summaryrefslogtreecommitdiff
path: root/tools/gyp_node
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2011-12-23 14:24:50 -0800
committerRyan Dahl <ry@tinyclouds.org>2011-12-23 14:25:17 -0800
commit624f70e88f42a69b78e08278b5037359fe3a514b (patch)
tree4bab4866c42da8b159c35778e15098d9eccf1308 /tools/gyp_node
parent6ac22bfb04c5a4d17e44822d6c2e658220791788 (diff)
downloadnode-new-624f70e88f42a69b78e08278b5037359fe3a514b.tar.gz
GYP: rename options.gypi to config.gypi
Sounds more familiar to unix users used to config.h
Diffstat (limited to 'tools/gyp_node')
-rwxr-xr-xtools/gyp_node4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/gyp_node b/tools/gyp_node
index 0bc51b7dd8..5ecdf8fe90 100755
--- a/tools/gyp_node
+++ b/tools/gyp_node
@@ -29,11 +29,11 @@ if __name__ == '__main__':
if sys.platform == 'win32':
args.append(os.path.join(node_root, 'node.gyp'))
common_fn = os.path.join(node_root, 'common.gypi')
- options_fn = os.path.join(node_root, 'options.gypi')
+ options_fn = os.path.join(node_root, 'config.gypi')
else:
args.append(os.path.join(os.path.abspath(node_root), 'node.gyp'))
common_fn = os.path.join(os.path.abspath(node_root), 'common.gypi')
- options_fn = os.path.join(os.path.abspath(node_root), 'options.gypi')
+ options_fn = os.path.join(os.path.abspath(node_root), 'config.gypi')
if os.path.exists(common_fn):
args.extend(['-I', common_fn])