The following commit has been merged in the master branch:
commit c8c488b08baaef410e7fd4ec5c3e3aa3a64599d7
Author: David Prévot <[email protected]>
Date: Thu May 26 22:46:51 2011 -0400
Handle the last description in devscripts(1)
Signed-off-by: James Vega <[email protected]>
diff --git a/debian/genmanpage.pl b/debian/genmanpage.pl
index 806b77b..f4b2a55 100644
--- a/debian/genmanpage.pl
+++ b/debian/genmanpage.pl
@@ -26,6 +26,11 @@ while(<CONTROL>) {
$package = $1;
$description = $2
}
+ # Handle the last description
+ elsif (/^ \./ and $package and $description) {
+ print $ITEM_LEADIN . $package . $ITEM_LEADOUT . "\n";
+ print $description . "\n";
+ }
else {
s/^.{3}//;
$description .= $_;
--
Git repository for devscripts
--
To unsubscribe, send mail to [email protected].