From: Paul Durrant Date: Tue, 13 Dec 2016 15:07:52 +0000 (+0000) Subject: Log some more information at build time X-Git-Tag: 9.0.0-rc1~44 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=a3293b29d862b123180b21752dd6c79bdff6a94f;p=pvdrivers%2Fwin%2Fxeniface.git Log some more information at build time The OBJECT_PREFIX and REG_KEY_NAME were not being logged by build.py. Signed-off-by: Paul Durrant --- diff --git a/build.py b/build.py index 1d587fa..9917e3c 100755 --- a/build.py +++ b/build.py @@ -451,6 +451,8 @@ if __name__ == '__main__': print("VENDOR_DEVICE_ID\t'%s'" % os.environ['VENDOR_DEVICE_ID']) print("PRODUCT_NAME\t\t'%s'" % os.environ['PRODUCT_NAME']) + print("OBJECT_PREFIX\t\t'%s'" % os.environ['OBJECT_PREFIX']) + print("REG_KEY_NAME\t\t'%s'" % os.environ['REG_KEY_NAME']) print("MAJOR_VERSION\t\t%s" % os.environ['MAJOR_VERSION']) print("MINOR_VERSION\t\t%s" % os.environ['MINOR_VERSION']) print("MICRO_VERSION\t\t%s" % os.environ['MICRO_VERSION'])