From 3b44aa49400647b785721e77da9c5e38eeb9fd83 Mon Sep 17 00:00:00 2001 From: Samuli Seppänen Date: Fri, 11 Feb 2011 16:03:31 +0200 Subject: Added support for viewing config-win32.h paramters to win/show.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The win/show.py tools is used to view build parameters interactively. This changes it so that it displays parameters parsed from config-win32.h in addition to those from win/settings.in. Signed-off-by: Samuli Seppänen Acked-by: James Yonan Signed-off-by: David Sommerseth --- win/show.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'win') diff --git a/win/show.py b/win/show.py index 9558c87..111c965 100644 --- a/win/show.py +++ b/win/show.py @@ -1,9 +1,9 @@ -from wb import get_config +from wb import get_config, get_build_params from js import JSON def main(): - kv = get_config() - print JSON().encode(kv) + print JSON().encode(get_config()) + print JSON().encode(get_build_params()) # if we are run directly, and not loaded as a module if __name__ == "__main__": -- cgit