Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 23 Oct 2013 22:57:34 +0000 (UTC)
From:      Eitan Adler <eadler@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r331445 - in head/print: cups-client cups-image
Message-ID:  <201310232257.r9NMvYXk085192@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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"



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