From faf3512f8fef31666da8035e8537d30c62135fee Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Tue, 1 Mar 2011 16:36:45 +0000 Subject: [PATCH] scons: fix ability to call 'install -c' and 'uninstall', broken since r2568 --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 2125b1f25..7bb7fe623 100644 --- a/SConstruct +++ b/SConstruct @@ -1353,7 +1353,7 @@ Help(opts.GenerateHelpText(env)) #env.Prepend(LIBPATH = '/usr/local/lib') #### Builds #### -if not HELP_REQUESTED and '-c' not in command_line_args: +if not HELP_REQUESTED: if 'uninstall' in COMMAND_LINE_TARGETS: # dummy action in case there is nothing to uninstall, to avoid phony error..