svn commit: r448767 - head/mail/smfsav-devel

Danilo G. Baio dbaio at FreeBSD.org
Sat Aug 26 12:46:01 UTC 2017


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
 


More information about the svn-ports-all mailing list