* New upstream release candidate:
- remove dbm_ldopts.dpatch (merged upstream)
- switch patch system to quilt
+ - add Backport-ocamlbuild-where-fix patch (from upstream)
- -- Stephane Glondu <steph@glondu.net> Tue, 19 May 2009 17:41:47 +0200
+ -- Stephane Glondu <steph@glondu.net> Tue, 26 May 2009 18:55:07 +0200
ocaml (3.11.0-5) unstable; urgency=low
--- /dev/null
+From: Stephane Glondu <steph@glondu.net>
+Date: Tue, 26 May 2009 18:54:22 +0200
+Subject: [PATCH] Backport ocamlbuild -where fix
+
+---
+ ocamlbuild/ocamlbuild_where.ml | 6 ++++--
+ 1 files changed, 4 insertions(+), 2 deletions(-)
+
+diff --git a/ocamlbuild/ocamlbuild_where.ml b/ocamlbuild/ocamlbuild_where.ml
+index 1703a53..14fcde5 100644
+--- a/ocamlbuild/ocamlbuild_where.ml
++++ b/ocamlbuild/ocamlbuild_where.ml
+@@ -1,5 +1,7 @@
+ let bindir = ref Ocamlbuild_Myocamlbuild_config.bindir;;
+ let libdir = ref begin
+- try Filename.concat (Sys.getenv "OCAMLLIB") "ocamlbuild"
+- with Not_found -> Ocamlbuild_Myocamlbuild_config.libdir
++ Filename.concat
++ (try Sys.getenv "OCAMLLIB"
++ with Not_found -> Ocamlbuild_Myocamlbuild_config.libdir)
++ "ocamlbuild"
+ end;;
+--
+1.6.2.4
+
0005-Add-to-ocamldoc-support-for-native-code-dynamic-load.patch
0006-Patch-config.sh-for-installation.patch
0007-Install-ocamlbuild-as-a-link-on-either-.native-or-.b.patch
+0008-Backport-ocamlbuild-where-fix.patch