#! /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: build-radpaths-h.in,v 1.4 2003/02/13 16:32:02 aland Exp $ # # 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@ cat < radpaths.h /* Automatically generated by "build-radpaths-h" */ #define LOGDIR "@logdir@" #define LIBDIR "@libdir@" #define RADDBDIR "@raddbdir@" #define RUNDIR "@localstatedir@/run" #define SBINDIR "@sbindir@" #define RADIR "@radacctdir@" EOF