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:
@@ -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
|
||||
|
Reference in New Issue
Block a user