mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-25 04:43:33 +00:00
7d135651b2
PR: 239226 Reviewed by: mat@ Differential Revision: https://reviews.freebsd.org/D20951
16 lines
269 B
Plaintext
16 lines
269 B
Plaintext
# $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
|