From: Stephane Glondu Date: Thu, 30 Dec 2021 08:26:50 +0000 (+0100) Subject: Do no longer provide /usr/include/caml symlink X-Git-Tag: archive/raspbian/4.13.1-3+rpi1~2^2~11 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=d0f9f00dbcca27a5882bac52521a8b8718994eea;p=ocaml.git Do no longer provide /usr/include/caml symlink --- diff --git a/debian/ocaml.postinst.in b/debian/ocaml.postinst.in deleted file mode 100644 index 156f5d66..00000000 --- a/debian/ocaml.postinst.in +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -set -e - -if [ "$1" = "configure" ]; then - ln -sf @OCamlStdlibDir@/caml /usr/include/ -fi - -#DEBHELPER# diff --git a/debian/ocaml.postrm b/debian/ocaml.postrm deleted file mode 100644 index 3dc4359e..00000000 --- a/debian/ocaml.postrm +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh -set -e - -rm -f /usr/include/caml - -#DEBHELPER# diff --git a/debian/ocaml.preinst b/debian/ocaml.preinst deleted file mode 100644 index c7e4af2d..00000000 --- a/debian/ocaml.preinst +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -set -e - -if [ ! -h /usr/include/caml ] && [ -e /usr/include/caml ]; then - echo "WARNING, /usr/include/caml is not a symlink !!!!" -fi - -#DEBHELPER#