*** empty log message ***
authorhanda <handa>
Mon, 14 Jul 2003 03:52:03 +0000 (03:52 +0000)
committerhanda <handa>
Mon, 14 Jul 2003 03:52:03 +0000 (03:52 +0000)
utils/mkman.rb

index 00866d4..303fc78 100644 (file)
@@ -19,6 +19,9 @@ else
 end
 $sampledir="sample/man3/"
 
+$headfile = $currentdir+"manhead"
+headbuf = open($headfile, "r").readlines
+
 #
 # Extra information about header strings Doxygen generates in a man file.
 #
@@ -469,6 +472,7 @@ unless FileTest.directory? filename
       end
 
      filetowrite = open($dstman3m+filename,"w")
+     filetowrite.puts(headbuf)
      filetowrite.puts(buf)
      filetowrite.flush
 end