diff options
author | ohauer <ohauer@FreeBSD.org> | 2014-12-25 21:44:00 +0800 |
---|---|---|
committer | ohauer <ohauer@FreeBSD.org> | 2014-12-25 21:44:00 +0800 |
commit | e7aa13698b27fe0919bb1baabc7707751428651c (patch) | |
tree | afe786fff9f02f8490805b951374024ce224575d /mail | |
parent | d93e3d0a541c61a662be7eba03562f8a028bd1e4 (diff) | |
download | freebsd-ports-gnome-e7aa13698b27fe0919bb1baabc7707751428651c.tar.gz freebsd-ports-gnome-e7aa13698b27fe0919bb1baabc7707751428651c.tar.zst freebsd-ports-gnome-e7aa13698b27fe0919bb1baabc7707751428651c.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)
Diffstat (limited to 'mail')
-rw-r--r-- | mail/mailgraph/Makefile | 2 | ||||
-rw-r--r-- | mail/mailgraph/files/mailgraph.in | 2 |
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 |