freebsd-ports/Keywords/ldconfig.ucl
Mathieu Arnold 5d33e04596
framework: Remove $FreeBSD$
Where appropriate fiddle with a few other things.
2021-04-06 16:27:10 +02:00

17 lines
317 B
Plaintext

# MAINTAINER: portmgr@FreeBSD.org
post-install: <<EOD
if ! /usr/sbin/service ldconfig restart >/dev/null; then
if [ -z "${INSTALL_AS_USER}" ]; then
exit 1
fi
fi
EOD
post-deinstall: <<EOD
if ! /usr/sbin/service ldconfig restart >/dev/null; then
if [ -z "${INSTALL_AS_USER}" ]; then
exit 1
fi
fi
EOD