[Pkg-ocaml-maint-commits] [SCM] dh-ocaml packaging branch, master, updated. debian/0.9.0-1-g07d8815

Stephane Glondu steph at glondu.net
Wed Sep 23 18:21:17 UTC 2009


The following commit has been merged in the master branch:
commit 07d8815007e6ad779da449e9a895eec73a4f7522
Author: Stephane Glondu <steph at glondu.net>
Date:   Wed Sep 23 20:21:11 2009 +0200

    dh_ocamldoc: fix typo in regexp

diff --git a/debhelper/dh_ocamldoc b/debhelper/dh_ocamldoc
index aca558c..25b3a35 100755
--- a/debhelper/dh_ocamldoc
+++ b/debhelper/dh_ocamldoc
@@ -142,7 +142,7 @@ sub read_ocamldoc_file($) {
                     find sub {
                         push @files, $File::Find::name
                             if /^.*\.mli\z/s && -f $_
-                            || /^.*\ml\z/s && ! -f $_.'i';
+                            || /^.*\.ml\z/s && ! -f $_.'i';
                     }, $dir;
                     $content .= join(' ', sort @files);
                 } else {
@@ -185,7 +185,7 @@ sub do_doc_package($@) {
             find sub {
                 push @files, $File::Find::name
                     if /^.*\.mli\z/s && -f $_
-                    || /^.*\ml\z/s && ! -f $_.'i';
+                    || /^.*\.ml\z/s && ! -f $_.'i';
             }, $search_dir;
             $doc_files .= join(' ', sort @files);
         }
diff --git a/debian/changelog b/debian/changelog
index bd1a2ed..81e2d58 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+dh-ocaml (0.9.1) UNRELEASED; urgency=low
+
+  * dh_ocamldoc: fix typo in regexp
+
+ -- Stéphane Glondu <glondu at debian.org>  Wed, 23 Sep 2009 20:19:51 +0200
+
 dh-ocaml (0.9.0) unstable; urgency=low
 
   [ Stefano Zacchiroli ]

-- 
dh-ocaml packaging



More information about the Pkg-ocaml-maint-commits mailing list