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:
authorBen Noordhuis <info@bnoordhuis.nl>2011-11-15 20:17:05 +0400
committerBen Noordhuis <info@bnoordhuis.nl>2011-11-15 20:17:05 +0400
commitb9e1bb3d92a1a9e07be05acf758fd3da355f9322 (patch)
treecf5e8cd7354ebc6e70924aece60d9fef455f9062 /configure
parent14b04b06b4a7f31b3b489abba5e1467678f0f6be (diff)
build: auto-run tools/gyp_node after ./configure
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure b/configure
index 0ec745c9390..36ffb6bcf76 100755
--- a/configure
+++ b/configure
@@ -3,6 +3,7 @@
import optparse
import os
import json
+import subprocess
import sys
root_dir = os.path.dirname(__file__)
@@ -245,3 +246,4 @@ json.dump(output, f, indent=2, skipkeys=True)
f.write("\n")
f.close()
+subprocess.call('tools/gyp_node')