mirror of
https://git.freebsd.org/ports.git
synced 2025-05-20 11:03:09 -04:00
11 lines
162 B
Bash
11 lines
162 B
Bash
#! /bin/sh
|
|
#
|
|
|
|
if [ "x$2" = "xPOST-INSTALL" ]; then
|
|
ldconf="%%PREFIX%%/lib/ocaml/ld.conf"
|
|
|
|
echo "%%PREFIX%%/lib/ocaml/site-lib/sqlite3" >> ${ldconf}
|
|
fi
|
|
|
|
exit 0
|
|
|