41_custom.in 216 Bytes
Newer Older
1 2
#!/bin/sh
cat <<EOF
3 4 5
if [ -f  \${config_directory}/custom.cfg ]; then
  source \${config_directory}/custom.cfg
elif [ -z "\${config_directory}" -a -f  \$prefix/custom.cfg ]; then
6 7 8 9
  source \$prefix/custom.cfg;
fi
EOF