cvschangelogbuilder (2.4-1) remove-program-extension-in-docs.diff

Summary

 cvschangelogbuilder.pl |   14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

    
download this patch

Patch contents

Index: cvschangelogbuilder/cvschangelogbuilder.pl
===================================================================
--- cvschangelogbuilder.orig/cvschangelogbuilder.pl	2008-07-16 11:49:42.000000000 +0000
+++ cvschangelogbuilder/cvschangelogbuilder.pl	2008-07-16 11:50:22.000000000 +0000
@@ -745,7 +745,7 @@
 	writeoutput("Note 1: Your cvs client (cvs or cvs.exe) must be in your PATH.\n");
 	writeoutput("Note 2: To use $PROG with a csv client through ssh, add option -ssh.\n");
 	writeoutput("\nUsage:\n");
-	writeoutput("  $PROG.$Extension -output=outputmode [-m=module -d=repository] [options]\n");
+	writeoutput("  $PROG -output=outputmode [-m=module -d=repository] [options]\n");
 	writeoutput("\n");
 	writeoutput("Where 'output' is:\n");
 	writeoutput("  listdeltabydate  To get a changelog between 2 versions, sorted by date\n");
@@ -807,10 +807,10 @@
 	writeoutput("  -debug=x            To output on stderr some debug info with level x.\n");
 	writeoutput("\n");
 	writeoutput("Examples:\n");
-	writeoutput("  $PROG.$Extension -output=listdeltabyfile -module=myproject -tagstart=myproj_2_0 -d=john\@cvsserver:/cvsdir\n");
-	writeoutput("  $PROG.$Extension -output=listdeltabydate -module=mymodule  -d=:ntserver:127.0.0.1:d:/mycvsdir\n");
-	writeoutput("  $PROG.$Extension -output=listdeltabylog  -module=mymodule  -d=:pserver:user\@127.0.0.1:/usr/local/cvsroot\n");
-	writeoutput("  $PROG.$Extension -output=buildhtmlreport -module=mymodule  -d=:ext:user\@cvs.sourceforge.net:/cvsroot -viewcvsurl=\"http://savannah.nongnu.org/cgi-bin/viewcvs/project/__MODULE__\"\n");
+	writeoutput("  $PROG -output=listdeltabyfile -module=myproject -tagstart=myproj_2_0 -d=john\@cvsserver:/cvsdir\n");
+	writeoutput("  $PROG -output=listdeltabydate -module=mymodule  -d=:ntserver:127.0.0.1:d:/mycvsdir\n");
+	writeoutput("  $PROG -output=listdeltabylog  -module=mymodule  -d=:pserver:user\@127.0.0.1:/usr/local/cvsroot\n");
+	writeoutput("  $PROG -output=buildhtmlreport -module=mymodule  -d=:ext:user\@cvs.sourceforge.net:/cvsroot -viewcvsurl=\"http://savannah.nongnu.org/cgi-bin/viewcvs/project/__MODULE__\"\n");
 	writeoutput("\n");
 	exit 0;
 }
@@ -899,7 +899,7 @@
 }
 if (! $Module) {
 	writeoutput("\n");
-	error("The module name was not provided and could not be detected.\nUse -m=cvsmodulename option to specifiy module name.\n\nExample: $PROG.$Extension -output=$Output -module=mymodule -d=:pserver:user\@127.0.0.1:/usr/local/cvsroot");
+	error("The module name was not provided and could not be detected.\nUse -m=cvsmodulename option to specifiy module name.\n\nExample: $PROG -output=$Output -module=mymodule -d=:pserver:user\@127.0.0.1:/usr/local/cvsroot");
 }
 
 writeoutput(ucfirst($PROG)." launched for module: $Module\n",1);
@@ -940,7 +940,7 @@
 }
 if (! $CvsRoot) {
 	writeoutput("\n");
-	error("The repository value to use was not provided and could not be detected.\nUse -d=repository option to specifiy repository value.\n\nExample: $PROG.$Extension -output=$Output -module=mymodule -d=:pserver:user\@127.0.0.1:/usr/local/cvsroot");
+	error("The repository value to use was not provided and could not be detected.\nUse -d=repository option to specifiy repository value.\n\nExample: $PROG -output=$Output -module=mymodule -d=:pserver:user\@127.0.0.1:/usr/local/cvsroot");
 }
 if ($OutputDir) {
     $OutputDir.="/";