summaryrefslogtreecommitdiff
path: root/edksetup.bat
diff options
context:
space:
mode:
authorlgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524>2010-01-26 04:58:56 +0000
committerlgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524>2010-01-26 04:58:56 +0000
commitdff2673eec6ee1792fad41833a5dc76499e99a31 (patch)
tree271200b9877cd5fde87ae1afc44e85c9a137ad36 /edksetup.bat
parent2e76dc7e79e1c2bc74cb1567352ad882e2d8d0c7 (diff)
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
Diffstat (limited to 'edksetup.bat')
-rwxr-xr-xedksetup.bat13
1 files changed, 8 insertions, 5 deletions
diff --git a/edksetup.bat b/edksetup.bat
index 7c7f52f6d..333015427 100755
--- a/edksetup.bat
+++ b/edksetup.bat
@@ -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%