summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore2
-rw-r--r--Makefile8
-rwxr-xr-xconfigure5
-rwxr-xr-xtools/gyp_node4
4 files changed, 9 insertions, 10 deletions
diff --git a/.gitignore b/.gitignore
index 6eb3b0a398..3bc7efb5e6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -31,7 +31,7 @@ ipch/
*.sdf
*.opensdf
-/options.gypi
+/config.gypi
*-nodegyp*
/gyp-mac-tool
/dist-osx
diff --git a/Makefile b/Makefile
index 99f980d982..337c6f6a13 100644
--- a/Makefile
+++ b/Makefile
@@ -21,21 +21,21 @@ node_g:
out/Debug/node:
$(MAKE) -C out BUILDTYPE=Debug
-out/Makefile: common.gypi deps/uv/uv.gyp deps/http_parser/http_parser.gyp deps/zlib/zlib.gyp deps/v8/build/common.gypi deps/v8/tools/gyp/v8.gyp node.gyp options.gypi
+out/Makefile: common.gypi deps/uv/uv.gyp deps/http_parser/http_parser.gyp deps/zlib/zlib.gyp deps/v8/build/common.gypi deps/v8/tools/gyp/v8.gyp node.gyp config.gypi
tools/gyp_node -f make
install: all
- out/Release/node tools/installer.js ./options.gypi install
+ out/Release/node tools/installer.js ./config.gypi install
uninstall:
- out/Release/node tools/installer.js ./options.gypi uninstall
+ out/Release/node tools/installer.js ./config.gypi uninstall
clean:
-rm -rf out/Makefile node node_g out/**/*.o out/**/*.a out/$(BUILDTYPE)/node
distclean:
-rm -rf out
- -rm options.gypi
+ -rm config.gypi
test: all
python tools/test.py --mode=release simple message
diff --git a/configure b/configure
index c36bb6669b..dbe7f243e1 100755
--- a/configure
+++ b/configure
@@ -231,8 +231,6 @@ def configure_openssl(o):
libs or cflags or options.openssl_libpath or options.openssl_includes)
-print "configure options:", options
-
output = {
'variables': {},
'include_dirs': [],
@@ -255,8 +253,9 @@ output = {
'variables': variables,
'target_defaults': output
}
+pprint.pprint(output, indent=2)
-fn = os.path.join(root_dir, 'options.gypi')
+fn = os.path.join(root_dir, 'config.gypi')
print "creating ", fn
f = open(fn, 'w+')
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])