2022-10-25 16:38:18 -04:00
|
|
|
#!/bin/sh
|
|
|
|
# install.conf
|
|
|
|
|
|
|
|
# Installation prefix
|
|
|
|
# On Everest, this should be /usr, because /bin, /sbin, and /lib are all symlinks to /usr
|
|
|
|
PREFIX="/usr"
|
|
|
|
|
|
|
|
# System config directory
|
|
|
|
# On almost all systems, this should be /etc
|
|
|
|
CONFDIR="/etc"
|
2022-12-09 10:41:22 -05:00
|
|
|
|
|
|
|
# C Compiler to use
|
|
|
|
CC="gcc"
|