1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-22 00:35:15 +00:00
freebsd-ports/x11/kdebase3/pkg-install

17 lines
191 B
Bash

#!/bin/sh
#
# $FreeBSD$
#
if [ "$2" != "POST-INSTALL" ]; then
exit 0
fi
kdmrcscript=%%PREFIX%%/etc/rc.d/genkdmconf.sh
if [ -f $kdmrcscript ]; then
sh -c "$kdmrcscript"
fi
exit 0