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.
---
 win/show.py |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/win/show.py b/win/show.py
index 9558c87..6b1140a 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__":
-- 
1.6.3.3


Reply via email to