blob: 506a21be67f420b7f4461657550eb57955b06630 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#! /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 <<EOF > 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
|