blob: 2d26f4060718c9ede546c72f8f07ebd89b12e538 (
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
|
$NetBSD: patch-aa,v 1.2 2003/10/11 14:18:58 grant Exp $
--- Makefile.orig 2000-03-15 13:51:39.000000000 -0800
+++ Makefile 2003-03-19 14:15:48.000000000 -0800
@@ -4,11 +4,13 @@
# Adapt the installation directories to your local standards.
# ----------------------------------------------------------------------
+PREFIX?= /usr/local
+
# This is where the host executable will go.
-DESTBIN = /usr/local/bin
+DESTBIN = ${PREFIX}/bin
# This is where the host manual page will go.
-DESTMAN = /usr/local/man
+DESTMAN = ${PREFIX}/man
BINDIR = $(DESTBIN)
MANDIR = $(DESTMAN)/man1
@@ -40,6 +42,9 @@
SYSDEFS =
+#if defined(NetBSD) && you have not removed support for $HOSTALIASES
+SYSDEFS = ${ALLOW_HOSTALIASES}
+
# ----------------------------------------------------------------------
# Configuration definitions.
# See also the header file conf.h for more configuration definitions.
|