]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/Source/Python/Common/LongFilePathOs.py
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / BaseTools / Source / Python / Common / LongFilePathOs.py
index 3d6fe9b01c744172b16c8151226da56910bc1217..190f36d7ec15dd85d6c757a2a466e9466c31ddee 100644 (file)
@@ -2,13 +2,7 @@
 # Override built in module os to provide support for long file path\r
 #\r
 # Copyright (c) 2014 - 2018, Intel Corporation. All rights reserved.<BR>\r
-# This program and the accompanying materials\r
-# are licensed and made available under the terms and conditions of the BSD License\r
-# which accompanies this distribution.  The full text of the license may be found at\r
-# http://opensource.org/licenses/bsd-license.php\r
-#\r
-# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+# SPDX-License-Identifier: BSD-2-Clause-Patent\r
 #\r
 \r
 from __future__ import absolute_import\r
@@ -66,6 +60,10 @@ def listdir(path):
         List.append(Item)\r
     return List\r
 \r
+if hasattr(os, 'replace'):\r
+    def replace(src, dst):\r
+        return os.replace(LongFilePath(src), LongFilePath(dst))\r
+\r
 environ = os.environ\r
 getcwd = os.getcwd\r
 chdir = os.chdir\r