svn commit: r331445 - in head/print: cups-client cups-image

Eitan Adler eadler at FreeBSD.org
Wed Oct 23 22:57:35 UTC 2013


Author: eadler
Date: Wed Oct 23 22:57:34 2013
New Revision: 331445
URL: http://svnweb.freebsd.org/changeset/ports/331445

Log:
  Use .sinclude instead of .exists & .include

Modified:
  head/print/cups-client/Makefile
  head/print/cups-image/Makefile

Modified: head/print/cups-client/Makefile
==============================================================================
--- head/print/cups-client/Makefile	Wed Oct 23 22:53:35 2013	(r331444)
+++ head/print/cups-client/Makefile	Wed Oct 23 22:57:34 2013	(r331445)
@@ -10,8 +10,5 @@ CUPS_CLIENT=	yes
 
 NO_STAGE=	yes
 
-.if exists(${.CURDIR}/Makefile.local)
-.include "${.CURDIR}/Makefile.local"
-.endif
-
+.sinclude "${.CURDIR}/Makefile.local"
 .include "${MASTERDIR}/Makefile"

Modified: head/print/cups-image/Makefile
==============================================================================
--- head/print/cups-image/Makefile	Wed Oct 23 22:53:35 2013	(r331444)
+++ head/print/cups-image/Makefile	Wed Oct 23 22:57:34 2013	(r331445)
@@ -10,8 +10,5 @@ CUPS_IMAGE=	yes
 
 NO_STAGE=	yes
 
-.if exists(${.CURDIR}/Makefile.local)
-.include "${.CURDIR}/Makefile.local"
-.endif
-
+.sinclude "${.CURDIR}/Makefile.local"
 .include "${MASTERDIR}/Makefile"


More information about the svn-ports-head mailing list