diff options
author | steve <steve@FreeBSD.org> | 1999-07-04 21:20:21 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1999-07-04 21:20:21 +0000 |
commit | 55352d0cbc47f7fd7d64f519f174ec2e64cd2b7a (patch) | |
tree | 704da600b6f021fe2ae9a9af8d3318b89aa3a4af /mail/majordomo | |
parent | b6a4353aed6af3740c8d3c05352a1e817b020899 (diff) | |
download | FreeBSD-ports-55352d0cbc47f7fd7d64f519f174ec2e64cd2b7a.zip FreeBSD-ports-55352d0cbc47f7fd7d64f519f174ec2e64cd2b7a.tar.gz |
No need to use '-p' since ${MKDIR} == 'mkdir -p'.
Diffstat (limited to 'mail/majordomo')
-rw-r--r-- | mail/majordomo/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/majordomo/Makefile b/mail/majordomo/Makefile index b9f0544b..bea9e0c 100644 --- a/mail/majordomo/Makefile +++ b/mail/majordomo/Makefile @@ -3,7 +3,7 @@ # Date created: 23 October 1996 # Whom: jfitz@FreeBSD.ORG # -# $Id: Makefile,v 1.13 1999/04/08 19:05:44 billf Exp $ +# $Id: Makefile,v 1.14 1999/04/21 00:39:27 scrappy Exp $ # DISTNAME= majordomo-1.94.4 @@ -35,7 +35,7 @@ pre-install: post-install: @ ln -sf archive2.pl ${PREFIX}/majordomo/archive @ for dir in tmp lists/test-l.archive lists/test-l-digest.archive digests/test-l-digest doc; do \ - ${MKDIR} -p ${PREFIX}/majordomo/$$dir; \ + ${MKDIR} ${PREFIX}/majordomo/$$dir; \ done @ /usr/sbin/chown majordom.majordom ${PREFIX}/majordomo/tmp @ /bin/chmod 700 ${PREFIX}/majordomo/tmp |