0e7a1872fe
PR: ports/83924 Submitted by: Scot W. Hetzel <swhetzel@gmail.com> Approved by: pav (mentor)
20 lines
884 B
Bash
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
|