mirror of
https://git.freebsd.org/ports.git
synced 2025-05-20 19:13:27 -04:00
12 lines
182 B
Bash
12 lines
182 B
Bash
#! /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
|
|
|