summaryrefslogtreecommitdiff
path: root/mail
diff options
context:
space:
mode:
authorMasafumi Max NAKANE <max@FreeBSD.org>1997-01-20 02:43:25 +0000
committerMasafumi Max NAKANE <max@FreeBSD.org>1997-01-20 02:43:25 +0000
commit6be9705a03979c845942f40ebdbae69b7c6f50a7 (patch)
tree370c78836a5f689ce29ab1701867b3d72d482daf /mail
parentAdded pre-extract target to check and cause error if it's not 022. (diff)
Oops, correct umask is 0022, not 022.
Notes
Notes: svn path=/head/; revision=5391
Diffstat (limited to 'mail')
-rw-r--r--mail/mailagent/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/mailagent/Makefile b/mail/mailagent/Makefile
index 9369b3964432..09d642b0192d 100644
--- a/mail/mailagent/Makefile
+++ b/mail/mailagent/Makefile
@@ -3,7 +3,7 @@
# Date created: 23 Sep 1996
# Whom: Masafumi NAKANE <max@FreeBSD.ORG>
#
-# $Id: Makefile,v 1.6 1997/01/16 09:53:21 max Exp $
+# $Id: Makefile,v 1.7 1997/01/20 02:30:08 max Exp $
#
DISTNAME= mailagent-3.0pl53
@@ -40,7 +40,7 @@ MAN1= edusers.1 mailagent.1 maildist.1 \
PERLPATH!= dirname `which perl5.003`
pre-extract:
- @if [ `/bin/sh -c umask` != 022 ]; then \
+ @if [ `/bin/sh -c umask` != 0022 ]; then \
echo "Please set umask to 022 before running make,"; \
echo "or mailagent will not build successfully."; \
false; fi