OSDN Git Service

Fix build
authorTor Norbye <tnorbye@google.com>
Tue, 4 Oct 2011 19:36:38 +0000 (12:36 -0700)
committerTor Norbye <tnorbye@google.com>
Tue, 4 Oct 2011 19:36:38 +0000 (12:36 -0700)
Change-Id: Ie4e5dcc64ba8e341f2229dce77b07effbe9443ba

.gitignore
eclipse/buildConfig/allElements.xml
eclipse/features/com.android.ide.eclipse.adt/feature.xml
eclipse/scripts/build_plugins.sh

index b36797d..c96c84f 100644 (file)
@@ -11,6 +11,7 @@ eclipse/final*Versions*.properties
 eclipse/plugins/com.android.ide.eclipse.*/@dot*
 eclipse/plugins/com.android.*/javaCompiler...args
 eclipse/plugins/com.android.ide.eclipse.adt/build.xml
+eclipse/plugins/com.android.ide.eclipse.adt.overlay/build.xml
 eclipse/plugins/com.android.ide.eclipse.ddms/build.xml
 eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/build.xml
 eclipse/plugins/com.android.ide.eclipse.traceview/build.xml
index da4a57d..6bdfa9b 100644 (file)
              <property name="id" value="com.android.ide.eclipse.traceview" />
          </ant>
 
-         <ant antfile="${genericTargets}" target="${target}">
-             <property name="type" value="feature" />
-             <property name="id" value="com.android.ide.eclipse.adt.xml" />
-         </ant>
-
         <antcall target="buildInternalFeatures"/>
          
      </target>
@@ -75,7 +70,7 @@
          <ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
      </target>
 
-     <target name="assemble.com.android.ide.eclipse.adt.xml">
+     <target name="assemble.com.android.ide.eclipse.adt.overlay">
          <ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
      </target>
 
index cbb07da..2b0171e 100644 (file)
@@ -151,7 +151,7 @@ This Agreement is governed by the laws of the State of New York and the intellec
          unpack="false"/>
 
    <plugin
-         id="overlay.com.android.ide.eclipse.adt.xml"
+         id="overlay.com.android.ide.eclipse.adt.overlay"
          download-size="0"
          install-size="0"
          version="0.0.0"
index 5796a6c..c8bcd8d 100755 (executable)
@@ -178,6 +178,10 @@ if [ ! -f "$BUILDFILE" ]; then
   exit 1
 fi
 
+#
+# Ensure that the src dir exists since it's empty
+#
+mkdir -p $PWD/eclipse/plugins/com.android.ide.eclipse.adt.overlay/src
 
 #
 # -- Print configuration used and actually execute the build --