Index: /trunk/debbuild
===================================================================
--- /trunk/debbuild	(revision 76)
+++ /trunk/debbuild	(revision 77)
@@ -52,4 +52,5 @@
 
 # Globals
+my $finalmessages = '';	# A place to stuff messages that I want printed at the *very* end of any processing.
 my $specfile;
 my $tarball;
@@ -241,4 +242,7 @@
   binpackage();
 }
+
+# Spit out any closing remarks
+print $finalmessages;
 
 # Just in case.
@@ -933,4 +937,7 @@
 	or die "Can't exec: $!\n";
 
+    $finalmessages .= "Wrote binary package ".
+	"$pkgdata{$pkg}{name}_$pkgdata{$pkg}{version}-$pkgdata{main}{release}_i386.deb".
+	" in $topdir/DEBS/i386\n";
     # and clean up
     unlink $debscriptfile;
@@ -989,5 +996,5 @@
   
   system "$paxcmd";
-  print "Wrote source package $pkgsrcname in $topdir/SDEBS.\n";
+  $finalmessages .= "Wrote source package $pkgsrcname in $topdir/SDEBS.\n";
 }
 
