Reviewed-by: Liming Gao <[email protected]> for this serials. -----Original Message----- From: Justen, Jordan L Sent: Tuesday, March 8, 2016 11:15 AM To: [email protected] Cc: Justen, Jordan L <[email protected]>; Zhu, Yonghong <[email protected]>; Gao, Liming <[email protected]>; Kinney, Michael D <[email protected]> Subject: [PATCH 1/3] BaseTools ConvertMasmToNasm: Set gitemail when git is not found
Fixes: https://github.com/tianocore/edk2/issues/63 Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jordan Justen <[email protected]> Cc: Yonghong Zhu <[email protected]> Cc: Liming Gao <[email protected]> Cc: Michael Kinney <[email protected]> --- BaseTools/Scripts/ConvertMasmToNasm.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/BaseTools/Scripts/ConvertMasmToNasm.py b/BaseTools/Scripts/ConvertMasmToNasm.py index 7ad0bd2..2f0dd4f 100755 --- a/BaseTools/Scripts/ConvertMasmToNasm.py +++ b/BaseTools/Scripts/ConvertMasmToNasm.py @@ -1,7 +1,7 @@ # @file ConvertMasmToNasm.py # This script assists with conversion of MASM assembly syntax to NASM # -# Copyright (c) 2007 - 2014, Intel Corporation. All rights reserved.<BR> +# Copyright (c) 2007 - 2016, Intel Corporation. All rights reserved.<BR> # # This program and the accompanying materials # are licensed and made available under the terms and conditions of the BSD License @@ -127,6 +127,7 @@ class CommonUtils: while True: path = os.path.split(lastpath)[0] if path == lastpath: + self.gitemail = None return candidate = os.path.join(path, '.git') if os.path.isdir(candidate): @@ -197,6 +198,7 @@ class CommonUtils: message += '%s to %s\n' % (src, dst) message += '\n' message += 'Contributed-under: TianoCore Contribution Agreement 1.0\n' + assert(self.gitemail is not None) message += 'Signed-off-by: %s\n' % self.gitemail cmd = ('git', 'commit', '-F', '-') -- 2.7.0 _______________________________________________ edk2-devel mailing list [email protected] https://lists.01.org/mailman/listinfo/edk2-devel

