build-radpaths-h.in   [plain text]


#! /bin/sh
#
# build-radpaths-h
#		Script to generate radpaths.h file. This is needed to
#		work around the weird way "autoconf" substitutes things
#		that are generated in anyway from a command line
#		argument having to do with a path (--prefix etc)
#
# Version:	$Id$
#

# Location of files.
prefix=@prefix@
exec_prefix=@exec_prefix@
sysconfdir=@sysconfdir@
localstatedir=@localstatedir@
libdir=@libdir@
bindir=@bindir@
sbindir=@sbindir@
mandir=@mandir@
logdir=@logdir@
raddbdir=@raddbdir@
radacctdir=@radacctdir@
datarootdir=@datarootdir@

cat <<EOF > radpaths.h
/* Automatically generated by "build-radpaths-h" */
#define LOGDIR		"@logdir@"
#define RADDBDIR	"@raddbdir@"
#define RUNDIR		"@localstatedir@/run"
#define SBINDIR		"@sbindir@"
#define RADIR		"@radacctdir@"
EOF