mirror of https://github.com/acidanthera/audk.git
BaseTools: Update nmake Makefile to handle the file path with “:\\”.
DOS del command doesn’t handle “:\\” in the file path. This patch converts “:\\” to “:\”. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Gao, Liming <liming.gao@intel.com> Reviewed-by: lhauch <larry.hauch@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16160 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
77eef0d5a8
commit
b4dfada85d
|
@ -25,6 +25,10 @@ ARCH = IA32
|
|||
|
||||
MAKE = nmake -nologo
|
||||
|
||||
# DOS del command doesn't support ":\\" in the file path, such as j:\\BaseTools. Convert ":\\" to ":\"
|
||||
BASE_TOOLS_PATH = $(BASE_TOOLS_PATH::\\=:\)
|
||||
EDK_TOOLS_PATH = $(EDK_TOOLS_PATH::\\=:\)
|
||||
|
||||
SOURCE_PATH = $(BASE_TOOLS_PATH)\Source\C
|
||||
BIN_PATH = $(BASE_TOOLS_PATH)\Bin
|
||||
LIB_PATH = $(BASE_TOOLS_PATH)\Lib
|
||||
|
|
|
@ -25,6 +25,10 @@ FREEZE=$(PYTHON_FREEZER_PATH)\FreezePython.exe
|
|||
|
||||
MODULES=encodings.cp437,encodings.gbk,encodings.utf_16,encodings.utf_8,encodings.utf_16_le,encodings.latin_1,encodings.ascii
|
||||
|
||||
# DOS del command doesn't support ":\\" in the file path, such as j:\\BaseTools. Convert ":\\" to ":\"
|
||||
BASE_TOOLS_PATH = $(BASE_TOOLS_PATH::\\=:\)
|
||||
EDK_TOOLS_PATH = $(EDK_TOOLS_PATH::\\=:\)
|
||||
|
||||
BIN_DIR=$(EDK_TOOLS_PATH)\Bin\Win32
|
||||
|
||||
APPLICATIONS=$(BIN_DIR)\build.exe $(BIN_DIR)\GenFds.exe $(BIN_DIR)\Trim.exe $(BIN_DIR)\TargetTool.exe $(BIN_DIR)\GenDepex.exe $(BIN_DIR)\GenPatchPcdTable.exe $(BIN_DIR)\PatchPcdValue.exe $(BIN_DIR)\BPDG.exe $(BIN_DIR)\UPT.exe $(BIN_DIR)\Rsa2048Sha256Sign.exe $(BIN_DIR)\Rsa2048Sha256GenerateKeys.exe
|
||||
|
|
Loading…
Reference in New Issue