OSDN Git Service

Fix ddmlib's classpath to not copy Android.mk
authorXavier Ducrohet <xav@android.com>
Mon, 30 Aug 2010 22:58:18 +0000 (15:58 -0700)
committerXavier Ducrohet <xav@android.com>
Mon, 30 Aug 2010 22:58:18 +0000 (15:58 -0700)
With the recent change to build all folders under the root folder,
there was an issue with Eclipse copying src/Android.mk into the bin
folder. This prevented the sdk from building locally due to duplicate
module names.

Change-Id: I541d5198cb3501a55b7072fc3c6a8b58178e9661

ddms/libs/ddmlib/.classpath

index fb50116..9762afc 100644 (file)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <classpath>
-       <classpathentry kind="src" path="src"/>
+       <classpathentry excluding="Android.mk" kind="src" path="src"/>
        <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
        <classpathentry kind="output" path="bin"/>
 </classpath>