OSDN Git Service

ADT tools location: traceview is a .bat
authorRaphael Moll <ralf@android.com>
Sat, 13 Nov 2010 20:04:10 +0000 (12:04 -0800)
committerJean-Baptiste Queru <jbq@google.com>
Tue, 16 Nov 2010 17:46:34 +0000 (09:46 -0800)
This prevents adb from starting under windows, since
adt is trying to verify the presence of traceview.exe
when it's actually traceview.bat.

Change-Id: I259d90adb17b0b91beb114319cf88392812fc264

eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/AndroidConstants.java

index a26374c..ce5a0f6 100644 (file)
@@ -118,7 +118,7 @@ public class AndroidConstants {
 
     public final static String FN_TRACEVIEW =
         (SdkConstants.CURRENT_PLATFORM == SdkConstants.PLATFORM_WINDOWS) ?
-            "traceview.exe" : "traceview"; //$NON-NLS-1$ //$NON-NLS-2$
+            "traceview.bat" : "traceview"; //$NON-NLS-1$ //$NON-NLS-2$
 
     public final static String FN_HPROF_CONV =
         (SdkConstants.CURRENT_PLATFORM == SdkConstants.PLATFORM_WINDOWS) ?