Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] Patch - remove "requires" statement in feature plugins

Hi,

I've applied the following patch to the 1.1 branch, to all 5
platform-specific
feature plugins. Dave is investigating why these caused the errors that
people
were seeing when installing, but in the meantime, we'll just remove the 
"requires" statement from the 1.1 build. It will let people install without
any errors.

Sebastien

Index: feature.xml
===================================================================
RCS file: /home/tools/org.eclipse.cdt.linux.gtk-feature/feature.xml,v
retrieving revision 1.16.2.1
diff -u -r1.16.2.1 feature.xml
--- feature.xml	1 May 2003 12:48:06 -0000	1.16.2.1
+++ feature.xml	1 May 2003 13:42:36 -0000
@@ -25,9 +25,7 @@
          id="org.eclipse.cdt"
          version="1.1.0"
          match="equivalent"/>
-   <requires>
-     <import plugin="org.eclipse.cdt" version="1.1.0" match="compatible"/>
-   </requires>
+
    <plugin
          id="org.eclipse.cdt.core.linux"
          download-size="0"
Index: feature.xml
===================================================================
RCS file: /home/tools/org.eclipse.cdt.linux.motif-feature/feature.xml,v
retrieving revision 1.16.2.1
diff -u -r1.16.2.1 feature.xml
--- feature.xml	1 May 2003 12:48:02 -0000	1.16.2.1
+++ feature.xml	1 May 2003 13:44:29 -0000
@@ -25,9 +25,7 @@
          id="org.eclipse.cdt"
          version="1.1.0"
          match="equivalent"/>
-   <requires>
-     <import plugin="org.eclipse.cdt" version="1.1.0" match="compatible"/>
-   </requires>
+
    <plugin
          id="org.eclipse.cdt.core.linux"
          download-size="0"
Index: feature.xml
===================================================================
RCS file: /home/tools/org.eclipse.cdt.qnx.photon-feature/feature.xml,v
retrieving revision 1.16.2.1
diff -u -r1.16.2.1 feature.xml
--- feature.xml	1 May 2003 12:48:07 -0000	1.16.2.1
+++ feature.xml	1 May 2003 13:44:43 -0000
@@ -25,9 +25,6 @@
          id="org.eclipse.cdt"
          version="1.1.0"
          match="equivalent"/>
-   <requires>
-     <import plugin="org.eclipse.cdt" version="1.1.0" match="compatible"/>
-   </requires>
    
    <plugin
          id="org.eclipse.cdt.core.qnx"
Index: feature.xml
===================================================================
RCS file: /home/tools/org.eclipse.cdt.solaris.motif-feature/feature.xml,v
retrieving revision 1.16.2.1
diff -u -r1.16.2.1 feature.xml
--- feature.xml	1 May 2003 12:48:03 -0000	1.16.2.1
+++ feature.xml	1 May 2003 13:44:55 -0000
@@ -25,10 +25,7 @@
          id="org.eclipse.cdt"
          version="1.1.0"
          match="equivalent"/>
-         
-   <requires>
-     <import plugin="org.eclipse.cdt" version="1.1.0" match="compatible"/>
-   </requires>
+
    
    <plugin
          id="org.eclipse.cdt.core.solaris"
Index: feature.xml
===================================================================
RCS file: /home/tools/org.eclipse.cdt.win32-feature/feature.xml,v
retrieving revision 1.16.2.1
diff -u -r1.16.2.1 feature.xml
--- feature.xml	1 May 2003 12:48:05 -0000	1.16.2.1
+++ feature.xml	1 May 2003 13:47:36 -0000
@@ -26,10 +26,6 @@
          version="1.1.0"
          match="equivalent"/>
    
-   <requires>
-     <import plugin="org.eclipse.cdt" version="1.1.0" match="compatible"/>
-   </requires>
-   
    <plugin
          id="org.eclipse.cdt.core.win32"
          download-size="0"


Back to the top