From e11847bfa949481322f2031049402a093ed442a7 Mon Sep 17 00:00:00 2001 From: Nilay Vaish Date: Thu, 1 Mar 2012 11:36:59 -0600 Subject: Config: make option ruby available always --- configs/example/se.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'configs/example/se.py') diff --git a/configs/example/se.py b/configs/example/se.py index de98fa002..f2a26709e 100644 --- a/configs/example/se.py +++ b/configs/example/se.py @@ -82,10 +82,8 @@ parser.add_option("--errout", default="", help="Redirect stderr to a file.") execfile(os.path.join(config_root, "common", "Options.py")) -if buildEnv['PROTOCOL'] != 'None': - parser.add_option("--ruby", action="store_true") - if '--ruby' in sys.argv: - Ruby.define_options(parser) +if '--ruby' in sys.argv: + Ruby.define_options(parser) (options, args) = parser.parse_args() -- cgit v1.2.3