Do no longer provide /usr/include/caml symlink
authorStephane Glondu <steph@glondu.net>
Thu, 30 Dec 2021 08:26:50 +0000 (09:26 +0100)
committerStéphane Glondu <glondu@debian.org>
Thu, 30 Dec 2021 08:26:50 +0000 (09:26 +0100)
debian/ocaml.postinst.in [deleted file]
debian/ocaml.postrm [deleted file]
debian/ocaml.preinst [deleted file]

diff --git a/debian/ocaml.postinst.in b/debian/ocaml.postinst.in
deleted file mode 100644 (file)
index 156f5d6..0000000
+++ /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 (file)
index 3dc4359..0000000
+++ /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 (file)
index c7e4af2..0000000
+++ /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#