7d135651b2
PR: 239226 Reviewed by: mat@ Differential Revision: https://reviews.freebsd.org/D20951
15 lines
269 B
Text
15 lines
269 B
Text
# $FreeBSD$
|
|
#
|
|
# MAINTAINER: portmgr@FreeBSD.org
|
|
#
|
|
|
|
post-install: <<EOD
|
|
if [ -n "$(/sbin/sysctl -q compat.linux.osrelease)" ]; then
|
|
%@/sbin/ldconfig
|
|
fi
|
|
EOD
|
|
post-deinstall: <<EOD
|
|
if [ -n "$(/sbin/sysctl -q compat.linux.osrelease)" ]; then
|
|
%@/sbin/ldconfig
|
|
fi
|
|
EOD
|