From f232d026c38276433bbfe2ecc4eb854649a49905 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Wed, 27 Feb 2013 10:37:27 -0500 Subject: [PATCH] scons: fix behavior of scons --clean install --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index e0536337a..e8b6a11a1 100644 --- a/SConstruct +++ b/SConstruct @@ -456,7 +456,7 @@ HELP_REQUESTED = False if ('-h' in command_line_args) or ('--help' in command_line_args): HELP_REQUESTED = True -if ('-c' in command_line_args) or ('--clean' in command_line_args): +if ('install' not in command_line_args) and ('-c' in command_line_args) or ('--clean' in command_line_args): HELP_REQUESTED = True if 'configure' in command_line_args and not HELP_REQUESTED: