mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-15 07:56:36 +00:00
e3ea92b343
- Add SQLite2 support - add startup file to run ldconfig
16 lines
186 B
Bash
16 lines
186 B
Bash
#!/bin/sh
|
|
|
|
case "$1" in
|
|
start)
|
|
/sbin/ldconfig -m %%PREFIX%%/lib/hk_classes
|
|
;;
|
|
stop)
|
|
;;
|
|
*)
|
|
echo ""
|
|
echo "Usage: `basename $0` { start | stop }"
|
|
echo ""
|
|
exit 64
|
|
;;
|
|
esac
|