blob: 2104c2c087352d76622a7b5739643a2ea37f6303 (
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
|
--- Makefile.in.orig Sun May 16 11:24:08 1999
+++ Makefile.in Thu Oct 5 23:44:15 2000
@@ -30,8 +30,8 @@
#oldsendmail=@OLDSENDMAIL@ # not used anymore
installmailer=@INSTALLMAILER@
mailerversion=@MAILERVERSION@
-bingrp = bin
-binusr = bin
+bingrp = wheel
+binusr = root
privbin = @PRIVBINDIR@
pubbin = @PUBBINDIR@
mailerdir = @MAILERDIR@
@@ -88,6 +88,14 @@
chown $(binusr) $(privbin) ; \
chgrp $(bingrp) $(privbin) ; \
chmod 755 $(privbin) ; \
+ fi
+ @if [ ! -d $(mailerdir) ]; then \
+ echo Making $(mailerdir) ; \
+ set -x ; \
+ mkdir -p $(mailerdir) || mkdir $(mailerdir) || exit 0 ; \
+ chown $(binusr) $(mailerdir) ; \
+ chgrp $(bingrp) $(mailerdir) ; \
+ chmod 755 $(mailerdir) ; \
fi
@if [ ! -d $(queuedir) ]; then \
echo Making $(queuedir) ; \
|