Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] Fix for bugzilla 54100 -- 'cdtbuild' file should not be binary


Hi All,
The patch below contains a new fileType entry for the org.eclipse.core.team.fileTypes extension. It just adds the 'cdtbuild' extension as a text type. Although this change has no functional effect on CVS or ClearCase operations, the reporter pointed out that 'cdtproject' is defined as text and it looks inconsistent. Thanks,

Sean Evoy
Rational Software - IBM Software Group
Ottawa, Ontario, Canada
Index: plugin.xml
===================================================================
RCS file: /home/tools/org.eclipse.cdt-core/org.eclipse.cdt.core/plugin.xml,v
retrieving revision 1.71
diff -u -r1.71 plugin.xml
--- plugin.xml	22 Dec 2004 19:49:20 -0000	1.71
+++ plugin.xml	28 Jan 2005 16:04:02 -0000
@@ -373,6 +373,9 @@
             type="text"
             extension="cdtproject">
       </fileTypes>
+      <fileTypes
+            extension="cdtbuild"
+            type="text"/>
    </extension>
 <!-- =================================================================================== -->
 <!-- Some well known C file extensions override for the team plugins                     -->

Back to the top