From b9e1bb3d92a1a9e07be05acf758fd3da355f9322 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Tue, 15 Nov 2011 17:17:05 +0100 Subject: [PATCH] build: auto-run tools/gyp_node after ./configure --- configure | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure b/configure index 0ec745c..36ffb6b 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') -- 2.7.4