Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2011-12-24 02:24:50 +0400
committerRyan Dahl <ry@tinyclouds.org>2011-12-24 02:25:17 +0400
commit624f70e88f42a69b78e08278b5037359fe3a514b (patch)
tree4bab4866c42da8b159c35778e15098d9eccf1308 /configure
parent6ac22bfb04c5a4d17e44822d6c2e658220791788 (diff)
GYP: rename options.gypi to config.gypi
Sounds more familiar to unix users used to config.h
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure5
1 files changed, 2 insertions, 3 deletions
diff --git a/configure b/configure
index c36bb6669ba..dbe7f243e16 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+')