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: fix gcj-dbtool --help


I'm checking this in on the trunk and the 4.0 branch.

Anthony pointed out that the output for 'gcj-dbtool --help' mixed up
the -m and -p commands.  This patch fixes it.

Tom

Index: ChangeLog
from  Tom Tromey  <tromey@redhat.com>

	* gnu/gcj/tools/gcj_dbtool/Main.java (usage): Fixed output.

Index: gnu/gcj/tools/gcj_dbtool/Main.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/gnu/gcj/tools/gcj_dbtool/Main.java,v
retrieving revision 1.5.2.2
diff -u -r1.5.2.2 Main.java
--- gnu/gcj/tools/gcj_dbtool/Main.java 11 Mar 2005 16:57:37 -0000 1.5.2.2
+++ gnu/gcj/tools/gcj_dbtool/Main.java 22 Mar 2005 16:56:51 -0000
@@ -293,10 +293,10 @@
        + "    gcj-dbtool -t file.gcjdb            - Test a gcj map database\n"
        + "    gcj-dbtool -l file.gcjdb            - List a gcj map database\n"
        + "    gcj-dbtool -m dest.gcjdb [source.gcjdb]...\n"
-       + "    gcj-dbtool -p                       - Print default database name\n"
        + "             - Merge gcj map databases into dest\n"
        + "               Replaces dest\n"
-       + "               To add to dest, include dest in the list of sources");
+       + "               To add to dest, include dest in the list of sources\n"
+       + "    gcj-dbtool -p                       - Print default database name");
   }
 
   // Add a jar to a map.  This copies the map first and returns a


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