blob: 94d97eb850f8dfc75f27560a774c0fc4e68164c2 (
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
|
commit 31527ffd5d77c6cf21850bddd9ae7e97e37721ca
Author: Isaac Dunham <ibid.ag@gmail.com>
Date: Sat Sep 13 09:48:34 2014 -0700
Use more standard defaults
diff --git a/Makefile b/Makefile
index 5f4b124..05d0635 100644
--- a/Makefile
+++ b/Makefile
@@ -6,18 +6,18 @@
# See the file INSTALL if you need help.
#
-PREFIX = /usr/local
+PREFIX = /usr
BINDIR = $(PREFIX)/bin
MANDIR = $(PREFIX)/share/man
SYSCONFDIR = /etc
MAILRC = $(SYSCONFDIR)/nail.rc
-MAILSPOOL = /var/mail
-SENDMAIL = /usr/lib/sendmail
+MAILSPOOL = /var/spool/mail
+SENDMAIL = /usr/sbin/sendmail
DESTDIR =
-UCBINSTALL = /usr/ucb/install
+UCBINSTALL = /usr/bin/install
# Define compiler, preprocessor, and linker flags here.
# Note that some Linux/glibc versions need -D_GNU_SOURCE in CPPFLAGS, or
|