This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java 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 libgcj/classpath comparison script to include some
more packages that are currently merged.

Tom

Index: gen-classpath-compare
===================================================================
RCS file: /cvs/gcc/wwwdocs/bin/gen-classpath-compare,v
retrieving revision 1.2
diff -u -r1.2 gen-classpath-compare
--- gen-classpath-compare 10 Nov 2002 21:38:41 -0000 1.2
+++ gen-classpath-compare 21 Feb 2003 02:03:54 -0000
@@ -63,12 +63,13 @@
 No='<td bgcolor="#eeeeaa">No</td>'
 Yes='<td>Yes</td>'
 
-# Note: for now, we omit most of gnu.* (it differs too much) and also
-# javax.swing,
+# Note: for now, we omit much of gnu.* (it differs too much) and also
+# javax.swing.
 (cd $LIBGCJ; find . -name '*.java' -print; \
 cd $CLASSPATH; find . -name '*.java' -print) |
 sort | uniq | sed -e 's,^\./,,' |
-grep -E '^(java|gnu/java/security|gnu/java/rmi|javax/naming|javax/transaction|javax/sql)/' |
+grep -E '^(java|gnu/java/security|gnu/java|gnu/javax/rmi|javax/naming|javax/transaction|javax/sql)/' |
+grep -E -v '^(gnu/java/io|gnu/java/lang|gnu/java/net)' |
 (cd $LIBGCJ
 while read f; do
    class=`echo $f | sed -e 's,/,.,g' -e 's,\.java$,,'`


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