diff options
author | Xavier Ducrohet <xav@android.com> | 2009-08-06 17:09:11 -0700 |
---|---|---|
committer | Xavier Ducrohet <xav@android.com> | 2009-08-06 17:12:09 -0700 |
commit | 06a4ac596f8fcd072a54581fc41bcf0bd9b72829 (patch) | |
tree | f2d1390a292bd425bfaf1a3f6b1390204cef74d4 /sdkmanager/app/etc/android.bat | |
parent | 3b5831fb4cc5674c23b863d77f8ead24cd8571fe (diff) | |
download | sdk-06a4ac596f8fcd072a54581fc41bcf0bd9b72829.zip sdk-06a4ac596f8fcd072a54581fc41bcf0bd9b72829.tar.gz sdk-06a4ac596f8fcd072a54581fc41bcf0bd9b72829.tar.bz2 |
Make android.bat copy commons-compress to tmp with the other jar files.
BUG: 2039759
Diffstat (limited to 'sdkmanager/app/etc/android.bat')
-rwxr-xr-x | sdkmanager/app/etc/android.bat | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sdkmanager/app/etc/android.bat b/sdkmanager/app/etc/android.bat index b19ce0a..032985d 100755 --- a/sdkmanager/app/etc/android.bat +++ b/sdkmanager/app/etc/android.bat @@ -43,9 +43,10 @@ if not "%1"=="" goto EndTempCopy set tmpdir=%TEMP%\temp-android-tool xcopy lib\x86 %tmpdir%\lib\x86 /I /E /C /G /R /O /Y /Q > nul - copy /B /D /Y lib\androidprefs.jar %tmpdir%\lib\ > nul - copy /B /D /Y lib\org.eclipse.* %tmpdir%\lib\ > nul - copy /B /D /Y lib\sdk* %tmpdir%\lib\ > nul + copy /B /D /Y lib\androidprefs.jar %tmpdir%\lib\ > nul + copy /B /D /Y lib\org.eclipse.* %tmpdir%\lib\ > nul + copy /B /D /Y lib\sdk* %tmpdir%\lib\ > nul + copy /B /D /Y lib\commons-compress* %tmpdir%\lib\ > nul rem jarpath and swt_path are relative to PWD so we don't need to adjust them, just change dirs. set toolsdir=%cd% |