Set correct workspace when workspace is not set.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9816 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
lgao4 2010-01-26 04:58:56 +00:00
parent 2e76dc7e79
commit dff2673eec
1 changed files with 8 additions and 5 deletions

View File

@ -30,13 +30,16 @@
pushd .
cd %~dp0
if defined WORKSPACE (
if %WORKSPACE% == %CD% (
@REM workspace is not changed.
@goto ParseArgs
)
if not defined WORKSPACE (
@goto SetWorkSpace
)
if %WORKSPACE% == %CD% (
@REM Workspace is not changed.
@goto ParseArgs
)
:SetWorkSpace
@REM set new workspace
@REM clear EFI_SOURCE and EDK_SOURCE for the new workspace
set WORKSPACE=%CD%