aboutsummaryrefslogtreecommitdiff
path: root/mail/mailgraph
diff options
context:
space:
mode:
authorOlli Hauer <ohauer@FreeBSD.org>2014-12-25 13:44:00 +0000
committerOlli Hauer <ohauer@FreeBSD.org>2014-12-25 13:44:00 +0000
commit2468007643f7d6a1de59e1a3ea98ec59f0929c71 (patch)
treeafe786fff9f02f8490805b951374024ce224575d /mail/mailgraph
parent064663b0dec7e031dd76d6c81c8c2a8f584470bf (diff)
downloadports-2468007643f7d6a1de59e1a3ea98ec59f0929c71.tar.gz
ports-2468007643f7d6a1de59e1a3ea98ec59f0929c71.zip
- fix broken rc script from last commit.
(var do not expandinside singel quote, so the port failed to start) - bump PORTREVISION PR: 196090 (followup) Approved by: maintainer (implicit)
Notes
Notes: svn path=/head/; revision=375551
Diffstat (limited to 'mail/mailgraph')
-rw-r--r--mail/mailgraph/Makefile2
-rw-r--r--mail/mailgraph/files/mailgraph.in2
2 files changed, 2 insertions, 2 deletions
diff --git a/mail/mailgraph/Makefile b/mail/mailgraph/Makefile
index ce5c23d12ed3..754a4325fd26 100644
--- a/mail/mailgraph/Makefile
+++ b/mail/mailgraph/Makefile
@@ -3,7 +3,7 @@
PORTNAME= mailgraph
PORTVERSION= 1.14
-PORTREVISION= 7
+PORTREVISION= 8
CATEGORIES= mail
MASTER_SITES= http://mailgraph.schweikert.ch/pub/ \
http://mailgraph.schweikert.ch/pub/old/
diff --git a/mail/mailgraph/files/mailgraph.in b/mail/mailgraph/files/mailgraph.in
index 1112468706e1..eaf57d9e1ed6 100644
--- a/mail/mailgraph/files/mailgraph.in
+++ b/mail/mailgraph/files/mailgraph.in
@@ -25,7 +25,7 @@ start_precmd()
{
mkdir -p "$mailgraph_chdir"
chown "$mailgraph_user" "$mailgraph_chdir"
- if ! su -m '$mailgraph_user' -c 'sh -c "[ -r '$mailgraph_maillog' ]"'; then
+ if ! su -m "$mailgraph_user" -c "sh -c \"[ -r "$mailgraph_maillog" ]\""; then
echo "MAILGRAPH CANNOT RUN: $mailgraph_maillog not readable by $mailgraph_user"
return 1
fi