svn commit: r375551 - in head/mail/mailgraph: . files

Olli Hauer ohauer at FreeBSD.org
Thu Dec 25 13:44:01 UTC 2014


Author: ohauer
Date: Thu Dec 25 13:44:00 2014
New Revision: 375551
URL: https://svnweb.freebsd.org/changeset/ports/375551
QAT: https://qat.redports.org/buildarchive/r375551/

Log:
  - 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)

Modified:
  head/mail/mailgraph/Makefile
  head/mail/mailgraph/files/mailgraph.in

Modified: head/mail/mailgraph/Makefile
==============================================================================
--- head/mail/mailgraph/Makefile	Thu Dec 25 13:35:23 2014	(r375550)
+++ head/mail/mailgraph/Makefile	Thu Dec 25 13:44:00 2014	(r375551)
@@ -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/

Modified: head/mail/mailgraph/files/mailgraph.in
==============================================================================
--- head/mail/mailgraph/files/mailgraph.in	Thu Dec 25 13:35:23 2014	(r375550)
+++ head/mail/mailgraph/files/mailgraph.in	Thu Dec 25 13:44:00 2014	(r375551)
@@ -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


More information about the svn-ports-head mailing list