This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Patch: FYI: update classpath comparison script


I'm checking this in.

This updates the classpath comparison script to look at javax.swing
as well.  Thanks to Michael Koch for pointing out that I should
change this.

Tom

Index: gen-classpath-compare
===================================================================
RCS file: /cvs/gcc/wwwdocs/bin/gen-classpath-compare,v
retrieving revision 1.4
diff -u -r1.4 gen-classpath-compare
--- gen-classpath-compare 29 Mar 2003 21:17:30 -0000 1.4
+++ gen-classpath-compare 31 Mar 2003 19:03:37 -0000
@@ -65,13 +65,12 @@
 VmSpec='<td>VM-specific</td>'
 Empty='<td>&nbsp;</td>'
 
-# Note: for now, we omit much of gnu.* (it differs too much) and also
-# javax.swing.
+# Note: for now, we omit much of gnu.*, as it differs too much.
 (cd $LIBGCJ; find . -name '*.java' -print;
 cd $CLASSPATH; find . -name '*.java' -print;
 cd $CLASSPATH/external/jaxp/source; find . -name '*.java' -print) |
 sort -u | sed -e 's,^\./,,' |
-grep -E '^(java|gnu/java/security|gnu/java|gnu/javax/rmi|javax/accessibility|javax/naming|javax/rmi|javax/sql|javax/transaction|javax/xml)/' |
+grep -E '^(java|gnu/java/security|gnu/java|gnu/javax|javax)/' |
 grep -E -v '^(gnu/java/io|gnu/java/lang|gnu/java/net|gnu/xml)' |
 (cd $LIBGCJ
 while read f; do


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]