aboutsummaryrefslogtreecommitdiffstats
path: root/misc/compat4x/pkg-install
blob: 3b23fcfaaffaefa8be110e8527e84f9eb8c9bf80 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/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