actually fix make clean first run - refs #2112
This commit is contained in:
parent
1c1cd076f8
commit
b56168d0a4
1 changed files with 2 additions and 2 deletions
|
@ -501,8 +501,8 @@ elif HELP_REQUESTED:
|
|||
|
||||
# need no-op for clean on fresh checkout
|
||||
# https://github.com/mapnik/mapnik/issues/2112
|
||||
if ('-c' in command_line_args) or ('--clean' in command_line_args) and not os.path.exists(SCONS_CONFIGURE_CACHE):
|
||||
print 'all good: nothing to clean'
|
||||
if not os.path.exists(SCONS_LOCAL_LOG) and ('-c' in command_line_args or '--clean' in command_line_args):
|
||||
print 'all good: nothing to clean, but you might want to run "make distclean"'
|
||||
Exit(0)
|
||||
|
||||
# initially populate environment with defaults and any possible custom arguments
|
||||
|
|
Loading…
Reference in a new issue