summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbbahnsen <bbahnsen@6f19259b-4bc3-4df7-8a09-765794883524>2006-04-21 23:36:37 +0000
committerbbahnsen <bbahnsen@6f19259b-4bc3-4df7-8a09-765794883524>2006-04-21 23:36:37 +0000
commit02996846c8d627f64e05841b5b3ca4d0302ee2e6 (patch)
treefc4ea3e2db74553d52ac53901930f7500074c335
parent878ddf1fc3540a715f63594ed22b6929e881afb4 (diff)
downloadedk2-02996846c8d627f64e05841b5b3ca4d0302ee2e6.zip
edk2-02996846c8d627f64e05841b5b3ca4d0302ee2e6.tar.gz
edk2-02996846c8d627f64e05841b5b3ca4d0302ee2e6.tar.bz2
Remove the XML Beans and Ant stuff.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r--edksetup.bat18
1 files changed, 15 insertions, 3 deletions
diff --git a/edksetup.bat b/edksetup.bat
index 34a3adc..0742e23 100644
--- a/edksetup.bat
+++ b/edksetup.bat
@@ -45,8 +45,8 @@ if not defined CYGWIN_HOME (
)
)
-if "%ANT_HOME%"=="" set ANT_HOME=%WORKSPACE%\Tools\bin\apache-ant
-if "%XMLBEANS_HOME%"=="" set XMLBEANS_HOME=%WORKSPACE%\Tools\bin\xmlbeans
+if "%ANT_HOME%"=="" goto no_ant
+if "%XMLBEANS_HOME%"=="" goto no_xmlbeans
set Framework_Tools_Path=%WORKSPACE%\Tools\bin
echo.
@@ -79,7 +79,19 @@ goto end
:no_jdk
echo.
-echo !!! Please set JAVA_HOME !!!
+echo !!! Please install Java, and set JAVA_HOME !!!
+echo.
+goto end
+
+:no_ant
+echo.
+echo !!! Please install Apache Ant, and set ANT_HOME !!!
+echo.
+goto end
+
+:no_xmlbeans
+echo.
+echo !!! Please install XML Beans, and set XMLBEANS_HOME !!!
echo.
goto end