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]

[wwwdocs] gen-classpath-compare patch


Hi,

I installed a copy of gen-classpath-compare on
http://developer.classpath.org/compare/ to test the setup and see how
stable it is. Since I run it twice a day I wanted to have the time added
(date -u). GNU Classpath no longer includes external/jaxp since GNU JAXP
is a normal upstream package now. And Stephane found an error in the
text that referred to the third column where it should be the second
column.

OK to commit these changes?

Cheers,

Mark
Index: gen-classpath-compare
===================================================================
RCS file: /cvs/gcc/wwwdocs/bin/gen-classpath-compare,v
retrieving revision 1.15
diff -u -r1.15 gen-classpath-compare
--- gen-classpath-compare	13 Sep 2004 13:06:46 -0000	1.15
+++ gen-classpath-compare	23 Sep 2004 19:55:59 -0000
@@ -54,7 +54,7 @@
 script (available in gcc cvs repository in <code>wwwdocs/bin/</code>) on
 END
 
-echo "`date '+%Y-%m-%d.'`</p>" >> $outfile
+echo "`date -u`</p>" >> $outfile
 
 if test "$gui" = "yes"; then
   echo "<p>Only lists gui files (AWT, Swing, and gtk-peer)</p>" >> $outfile
@@ -64,7 +64,7 @@
 
 cat >> $outfile << 'END'
 <p>This table intentionally omits certain classes which are not of
-interest.  If the third column shows a "Diff" link, then that means
+interest.  If the second column shows a "Diff" link, then that means
 the script believes that the class has been merged, but a difference
 has been reintroduced.  <em>Note that such differences cannot be
 automatically merged.</em> Any merging must be done manually; some
@@ -107,7 +107,6 @@
 
 (cd $LIBGCJ; find . -name '*.java' -print;
 cd $CLASSPATH; find . -name '*.java' -print;
-cd $CLASSPATH/external/jaxp/source; find . -name '*.java' -print
 cd $CLASSPATH/native; find jni/gtk-peer -name '*.c' -print) |
 sort -u | sed -e 's,^\./,,' |
 grep -E "$WantedRegexp" |
@@ -133,7 +132,6 @@
    clp=$No
 
    cpfile="$CLASSPATH/$f"
-   test -f "$cpfile" || cpfile="$CLASSPATH/external/jaxp/source/$f"
    test -f "$cpfile" || cpfile="$CLASSPATH/native/$f"
 
    if test -f "$cpfile"; then

Attachment: signature.asc
Description: This is a digitally signed message part


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