diff options
author | Xavier Ducrohet <xav@android.com> | 2010-08-30 15:58:18 -0700 |
---|---|---|
committer | Xavier Ducrohet <xav@android.com> | 2010-08-30 15:58:18 -0700 |
commit | c784afa7fda424961b9e80c3cd820c2382d793e3 (patch) | |
tree | 2a59155377cfa8b27f0145bf108f1da10d45a5d1 /ddms | |
parent | 88e57a758c3d55566eb9b9069a663af017576de4 (diff) | |
download | sdk-c784afa7fda424961b9e80c3cd820c2382d793e3.zip sdk-c784afa7fda424961b9e80c3cd820c2382d793e3.tar.gz sdk-c784afa7fda424961b9e80c3cd820c2382d793e3.tar.bz2 |
Fix ddmlib's classpath to not copy Android.mk
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
Diffstat (limited to 'ddms')
-rw-r--r-- | ddms/libs/ddmlib/.classpath | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ddms/libs/ddmlib/.classpath b/ddms/libs/ddmlib/.classpath index fb50116..9762afc 100644 --- a/ddms/libs/ddmlib/.classpath +++ b/ddms/libs/ddmlib/.classpath @@ -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> |