mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
15 lines
143 B
Bash
15 lines
143 B
Bash
#!/bin/sh
|
|
|
|
case "$1" in
|
|
start)
|
|
ldconfig -m %%TARGLIB%%
|
|
;;
|
|
stop)
|
|
;;
|
|
*)
|
|
echo "Usage: ${0##*/} { start | stop }" >&2
|
|
exit 64
|
|
;;
|
|
esac
|
|
exit 0
|