Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 26 Aug 2017 12:46:00 +0000 (UTC)
From:      "Danilo G. Baio" <dbaio@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r448767 - head/mail/smfsav-devel
Message-ID:  <201708261246.v7QCk0Jf060687@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dbaio
Date: Sat Aug 26 12:46:00 2017
New Revision: 448767
URL: https://svnweb.freebsd.org/changeset/ports/448767

Log:
  mail/smfsav-devel: Fix SUB_LIST
  
  Copying PLIST_SUB into SUB_LIST was duplicating the contents
  
  Pointyhat to:	dbaio
  Reported by:	mat

Modified:
  head/mail/smfsav-devel/Makefile

Modified: head/mail/smfsav-devel/Makefile
==============================================================================
--- head/mail/smfsav-devel/Makefile	Sat Aug 26 10:29:34 2017	(r448766)
+++ head/mail/smfsav-devel/Makefile	Sat Aug 26 12:46:00 2017	(r448767)
@@ -3,6 +3,7 @@
 
 PORTNAME=	smfsav
 PORTVERSION=	2.1
+PORTREVISION=	1
 CATEGORIES=	mail
 MASTER_SITES=	http://smf-sav.anw.at/
 PKGNAMESUFFIX=	-devel
@@ -27,7 +28,7 @@ LDFLAGS+=	-lmilter -lpthread
 SMFSAV_RUN_DIR?=/var/run/smfs
 PLIST_SUB=	SMFSAV_RUN_DIR=${SMFSAV_RUN_DIR}
 SUB_FILES+=	pkg-message
-SUB_LIST=	${PLIST_SUB}
+SUB_LIST=	SMFSAV_RUN_DIR=${SMFSAV_RUN_DIR}
 
 CONFLICTS=	smfsav
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201708261246.v7QCk0Jf060687>