freebsd-ports/misc/compat4x/pkg-install
Marcus Alves Grando 0e7a1872fe Add message about COMPAT_FREEBSD4 in kernel
PR:		ports/83924
Submitted by:	Scot W. Hetzel <swhetzel@gmail.com>
Approved by:	pav (mentor)
2005-09-25 18:34:45 +00:00

20 lines
884 B
Bash

#!/bin/sh
#
# $FreeBSD$
#
case $2 in
POST-INSTALL)
echo ""
echo "*******************************************************************************"
echo "* *"
echo "* Do not forget to add COMPAT_FREEBSD4 into *"
echo "* your kernel configuration (enabled by default). *"
echo "* *"
echo "* To configure and recompile your kernel see: *"
echo "* http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig.html *"
echo "* *"
echo "*******************************************************************************"
echo ""
;;
esac