From ee2f17d2b446f792827dd449dcafc3dd986a7ffa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konstantin=20Ka=CC=88fer?= Date: Fri, 11 Apr 2014 08:50:43 -0700 Subject: fix build on travis --- configure | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'configure') diff --git a/configure b/configure index 7156568ba2..2fa0a149ae 100755 --- a/configure +++ b/configure @@ -17,6 +17,11 @@ parser.add_option("--debug", dest="debug", help="Also build debug build") +parser.add_option("--node", + action="store", + dest="node", + help="Name of the node executable (defaults to node)") + parser.add_option("--pkg-config-root", action="store", dest="pkgconfig_root", @@ -48,6 +53,10 @@ def configure_llmr(o): o['variables']['boost_root'] = options.boost_root else: o['variables']['boost_root'] = '/usr/local' + if options.node: + o['variables']['node'] = options.node + else: + o['variables']['node'] = 'node' o['target_defaults']['default_configuration'] = 'Debug' if options.debug else 'Release' def configure_glfw3(o): -- cgit v1.2.1