svn commit: r477722 - head/print/magicfilter

Tobias Kortkamp tobik at FreeBSD.org
Tue Aug 21 16:17:38 UTC 2018


Author: tobik
Date: Tue Aug 21 16:17:36 2018
New Revision: 477722
URL: https://svnweb.freebsd.org/changeset/ports/477722

Log:
  print/magicfilter: Prevent ccache from being accidentally added as a run dependency
  
  PR:		218268
  Submitted by:	Andreas Hollmann <andreas.hollmann at gmail.com>

Modified:
  head/print/magicfilter/Makefile

Modified: head/print/magicfilter/Makefile
==============================================================================
--- head/print/magicfilter/Makefile	Tue Aug 21 15:56:20 2018	(r477721)
+++ head/print/magicfilter/Makefile	Tue Aug 21 16:17:36 2018	(r477722)
@@ -3,7 +3,7 @@
 
 PORTNAME=	magicfilter
 PORTVERSION=	2.3.h
-PORTREVISION=	8
+PORTREVISION=	9
 CATEGORIES=	print
 MASTER_SITES=	http://www.pell.portland.or.us/~orc/Code/magicfilter/
 
@@ -22,7 +22,7 @@ CONFIGURE_ENV+=		LOCALBASE=${LOCALBASE}
 
 .if exists(${LOCALBASE}/lib/libmagic.so)
 BUILD_DEPENDS+=	${LOCALBASE}/lib/libmagic.so:sysutils/file
-RUN_DEPENDS+=	${BUILD_DEPENDS}
+RUN_DEPENDS:=	${BUILD_DEPENDS}
 .endif
 
 .include <bsd.port.mk>


More information about the svn-ports-all mailing list