Add a summary of optional features at the end of the configuration stage.

This commit is contained in:
Gustavo J. A. M. Carneiro
2008-09-05 18:16:29 +01:00
parent 6e375eee8e
commit 453dd8a294
5 changed files with 49 additions and 1 deletions

View File

@@ -37,6 +37,8 @@ def configure(conf):
e.run()
if not Params.g_options.nsc:
conf.report_optional_feature("nsc", "Network Simulation Cradle", False,
"--nsc configure option not given")
return
check_nsc_buildutils()
@@ -55,6 +57,8 @@ def configure(conf):
e.run()
ok = True
conf.check_message('NSC supported architecture', arch, ok)
conf.report_optional_feature("nsc", "Network Simulation Cradle", ok,
"architecture %r not supported" % arch)
nsc_fetch()