#! /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@ dictdir=@dictdir@ radacctdir=@radacctdir@ datarootdir=@datarootdir@ 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@" #define DICTDIR "@dictdir@" EOF