From 0923aa1c3ad1a68f4781a98897889f3976d1b83d Mon Sep 17 00:00:00 2001 From: Hess Chen Date: Thu, 21 Aug 2014 07:51:21 +0000 Subject: This patch is going to: 1. Skip the content defined in USER EXTENSION section without raising an error. 2. Wrap os.utime to use two arguments. 3. Add GenFdsCommand for PlatformAutoGen Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Hess Chen Reviewed-by: Gao, Liming git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15865 6f19259b-4bc3-4df7-8a09-765794883524 --- BaseTools/Source/Python/Common/LongFilePathOs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'BaseTools/Source/Python/Common') diff --git a/BaseTools/Source/Python/Common/LongFilePathOs.py b/BaseTools/Source/Python/Common/LongFilePathOs.py index 66d93d25f3..2e530f9dd7 100644 --- a/BaseTools/Source/Python/Common/LongFilePathOs.py +++ b/BaseTools/Source/Python/Common/LongFilePathOs.py @@ -48,8 +48,8 @@ def chmod(path, mode): def stat(path): return os.stat(LongFilePath(path)) -def utime(path): - return os.utime(LongFilePath(path), None) +def utime(path, times): + return os.utime(LongFilePath(path), times) def listdir(path): List = [] -- cgit v1.2.3