diff options
author | qouyang <qouyang@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-08-28 13:06:24 +0000 |
---|---|---|
committer | qouyang <qouyang@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-08-28 13:06:24 +0000 |
commit | 3a9b7229223b7a87c3394954a88ebe4b45021d74 (patch) | |
tree | ea45d08298509d680fb5c319f77719b20a5968e0 | |
parent | b187ce9f15c2018d3ee837b873e38eacd331d5c7 (diff) | |
download | edk2-platforms-3a9b7229223b7a87c3394954a88ebe4b45021d74.tar.xz |
Fix the warning of "Unknown argument: -noclasspath" when calling "edksetup ForceRebuild".
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1396 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | edksetup.bat | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/edksetup.bat b/edksetup.bat index adc2b6d2cd..740b7bd15b 100644 --- a/edksetup.bat +++ b/edksetup.bat @@ -133,7 +133,8 @@ echo Resetting the PATH variable to include the FRAMEWORK_TOOLS_PATH for this WO goto skipbuild
-:ForceBuild
+:ForceBuild
+@if "%CLASSPATH%"=="" set CLASSPATH=
call ant -noclasspath -f %WORKSPACE%\Tools\build.xml cleanall
:NormalBuild
|