BaseTools: Update toolsetup.bat to call the set_vsprefix_envs.bat

Update toolsetup.bat to call the set_vsprefix_envs.bat to set the PREFIX
envs.

Cc: Liming Gao <liming.gao@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Yonghong Zhu <yonghong.zhu@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
diff --git a/BaseTools/toolsetup.bat b/BaseTools/toolsetup.bat
index 17b7239..8905214 100755
--- a/BaseTools/toolsetup.bat
+++ b/BaseTools/toolsetup.bat
@@ -3,7 +3,7 @@
 @REM   however it may be executed directly from the BaseTools project folder

 @REM   if the file is not executed within a WORKSPACE\BaseTools folder.

 @REM

-@REM Copyright (c) 2006 - 2013, Intel Corporation. All rights reserved.<BR>

+@REM Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR>

 @REM (C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR>

 @REM

 @REM This program and the accompanying materials are licensed and made available

@@ -164,6 +164,14 @@
    goto skip_reconfig

 )

 

+IF NOT exist "%EDK_TOOLS_PATH%\set_vsprefix_envs.bat" (

+  @echo.

+  @echo !!! ERROR !!! The set_vsprefix_envs.bat was not found !!!

+  @echo.

+  goto end

+)

+call %EDK_TOOLS_PATH%\set_vsprefix_envs.bat

+

 if not defined CONF_PATH (

   set CONF_PATH=%WORKSPACE%\Conf

 )