diff options
author | naddy <naddy@FreeBSD.org> | 2002-09-05 21:56:20 +0800 |
---|---|---|
committer | naddy <naddy@FreeBSD.org> | 2002-09-05 21:56:20 +0800 |
commit | 105b985e22703e0fad901a72a73b03ef3d9a4f58 (patch) | |
tree | 20ebba1f22e35754413874c128807c5d7ca02726 /mail | |
parent | 93b3e98f229b70544fed51098f3638f6ea509a29 (diff) | |
download | freebsd-ports-gnome-105b985e22703e0fad901a72a73b03ef3d9a4f58.tar.gz freebsd-ports-gnome-105b985e22703e0fad901a72a73b03ef3d9a4f58.tar.zst freebsd-ports-gnome-105b985e22703e0fad901a72a73b03ef3d9a4f58.zip |
Fix directory permissions.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/bsmtp/Makefile | 2 | ||||
-rw-r--r-- | mail/bsmtp/files/patch-Makefile.in | 14 |
2 files changed, 15 insertions, 1 deletions
diff --git a/mail/bsmtp/Makefile b/mail/bsmtp/Makefile index 50c8da64c718..c887799669e1 100644 --- a/mail/bsmtp/Makefile +++ b/mail/bsmtp/Makefile @@ -6,7 +6,7 @@ PORTNAME= bsmtp PORTVERSION= 1.02 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= mail MASTER_SITES= http://www.stud.uni-karlsruhe.de/~uk1o/bsmtp/ diff --git a/mail/bsmtp/files/patch-Makefile.in b/mail/bsmtp/files/patch-Makefile.in new file mode 100644 index 000000000000..824efaee8cdc --- /dev/null +++ b/mail/bsmtp/files/patch-Makefile.in @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- Makefile.in.orig Thu Sep 5 15:38:26 2002 ++++ Makefile.in Thu Sep 5 15:38:51 2002 +@@ -103,7 +103,7 @@ + mkdir -p $(mailerdir) || mkdir $(mailerdir) || exit 0 ; \ + chown $(binusr) $(mailerdir) ; \ + chgrp $(bingrp) $(mailerdir) ; \ +- chmod 644 $(mailerdir) ; \ ++ chmod 755 $(mailerdir) ; \ + fi + $(install) -c -o $(binusr) -g $(bingrp) -m 555 $(batcher) \ + $(privbin)/batcher || ( cp $(batcher) /tmp/batcher && \ |