blob: 8516201c6df8481b2f64c52ea9ccbc650b61cae1 (
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
|
$NetBSD: patch-aa,v 1.1.1.1 1999/06/21 11:18:04 agc Exp $
Don't override PREFIX in the main Makefile, and place the
configuration files, and the executable binary, in the correct
directory, according to hier(7).
--- Makefile 1999/06/21 10:36:33 1.1
+++ Makefile 1999/06/21 10:37:26
@@ -23,7 +23,7 @@
# The ${PREFIX} variable determines the top level directory that
# things are installed under.
#
-PREFIX = /var/local
+#PREFIX = /var/local
#
# The bin directory that user's will run the program from.
@@ -36,13 +36,13 @@
# Directory containing sysinfo.cf configuration files
#
#CONFDIR = /usr/local/lib/${PROG}
-CONFDIR = ${PREFIX}/${PROG}/conf
+CONFDIR = ${PREFIX}/libdata/${PROG}/conf
#
# The LIBDIR directory is where all the sysinfo binary executables
# will be installed.
#
-LIBDIR = ${PREFIX}/${PROG}/lib
+LIBDIR = ${PREFIX}/${PROG}/libexec
#
# Man sections and directories
|