blob: d26108142739242118d87729e064e6e5111080d0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#! /bin/sh
#
if [ "x$2" = "xPOST-DEINSTALL" ]; then
ldconf="%%PREFIX%%/lib/ocaml/ld.conf"
cat ${ldconf} | grep -v sqlite3 > ${ldconf}.tmp
mv ${ldconf}.tmp ${ldconf}
fi
exit 0
|