Relocated .sconsign.dblite, config.log and .sconf_temp to build/ dir.
This commit is contained in:
parent
b049dc3458
commit
4d39fc6474
1 changed files with 4 additions and 1 deletions
|
@ -14,6 +14,8 @@ from glob import glob
|
|||
from subprocess import Popen, PIPE, call
|
||||
from os import access, F_OK
|
||||
|
||||
SConsignFile("build/sconsign.dblite")
|
||||
|
||||
# Warn user of current set of build options.
|
||||
if os.path.exists('.scons-option-cache'):
|
||||
optfile = file('.scons-option-cache')
|
||||
|
@ -186,7 +188,8 @@ def Warning(message):
|
|||
return False
|
||||
|
||||
from metasconf import init_metasconf
|
||||
conf = Configure(env, custom_tests = init_metasconf(env, ["cplusplus", "python_devel", "sdl", "boost", "pango"]), config_h = "config.h")
|
||||
conf = Configure(env, custom_tests = init_metasconf(env, ["cplusplus", "python_devel", "sdl", "boost", "pango"]), config_h = "config.h",
|
||||
log_file="build/config.log", conf_dir="build/sconf_temp")
|
||||
|
||||
if env["prereqs"]:
|
||||
if env["gettextdir"]:
|
||||
|
|
Loading…
Add table
Reference in a new issue