blob: 7f2be6efd3588ca843cba07eb735cd9fbfa3d9c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_install() {
echo ""
echo "===================================================="
echo "To use awl, instruct php to include this directory:"
echo " /usr/share/awl/inc"
echo ""
echo "Apache2 example with local optional override dir:"
echo " php_value include_path ../inc:/usr/share/awl/inc"
echo ""
echo "Alternatively, add /usr/share/awl/inc under include_path"
echo "in your php.ini file for global availability"
echo "===================================================="
echo ""
}
|