]> err.no Git - pkg-config/commitdiff
2009-03-30 Tollef Fog Heen <tfheen@err.no>
authorTollef Fog Heen <tfheen@err.no>
Mon, 30 Mar 2009 17:52:01 +0000 (19:52 +0200)
committerTollef Fog Heen <tfheen@err.no>
Mon, 30 Mar 2009 17:52:01 +0000 (19:52 +0200)
* popthelp.c (poptPrintUsage,poptPrintHelp): Add [LIBRARIES] to
help output.  Debian #389066

ChangeLog
popthelp.c

index df3d9112151d39e3e798b8b76af7638d2cf1c692..d8934e0a65169d8e3b639a5f3b44b82d043e6387 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-03-30  Tollef Fog Heen  <tfheen@err.no>
+
+       * popthelp.c (poptPrintUsage,poptPrintHelp): Add [LIBRARIES] to
+       help output.  Debian #389066
+
 2008-04-28  Tollef Fog Heen  <tfheen@err.no>
 
        * parse.c Add my name to the copyright header, mainly to prevent
index 40d542ecc767500a90c1c6dbe7b5037d80b9fa0e..8fa68d12ecba0c865ee4ee40024479589ef5bb0d 100644 (file)
@@ -195,10 +195,11 @@ void poptPrintHelp(poptContext con, FILE * f, int flags) {
 
     showHelpIntro(con, f);
     if (con->otherHelp)
-       fprintf(f, " %s\n", con->otherHelp);
+       fprintf(f, " %s", con->otherHelp);
     else
-       fprintf(f, " %s\n", POPT_("[OPTION...]"));
+       fprintf(f, " %s", POPT_("[OPTION...]"));
 
+    fprintf(f, " [LIBRARIES]\n");
     leftColWidth = maxArgWidth(con->options);
     singleTableHelp(f, con->options, leftColWidth);
 }
@@ -292,8 +293,7 @@ void poptPrintUsage(poptContext con, FILE * f, int flags) {
        if (cursor > 79) fprintf(f, "\n       ");
        fprintf(f, " %s", con->otherHelp);
     }
-
-    fprintf(f, "\n");
+    fprintf(f, "\n        [LIBRARIES]\n");
 }
 
 void poptSetOtherOptionHelp(poptContext con, const char * text) {