diff options
author | eadler <eadler@FreeBSD.org> | 2013-10-24 06:57:34 +0800 |
---|---|---|
committer | eadler <eadler@FreeBSD.org> | 2013-10-24 06:57:34 +0800 |
commit | 6c6db4a71e90d53c13e8c3f27bdb5132dadf3f1d (patch) | |
tree | 11c6a75704456ccda0b81561d3f461f7f880d74f /print | |
parent | e1f2ca3667205b80f13eca2302980d89ebb6c4a5 (diff) | |
download | freebsd-ports-graphics-6c6db4a71e90d53c13e8c3f27bdb5132dadf3f1d.tar.gz freebsd-ports-graphics-6c6db4a71e90d53c13e8c3f27bdb5132dadf3f1d.tar.zst freebsd-ports-graphics-6c6db4a71e90d53c13e8c3f27bdb5132dadf3f1d.zip |
Use .sinclude instead of .exists & .include
Diffstat (limited to 'print')
-rw-r--r-- | print/cups-client/Makefile | 5 | ||||
-rw-r--r-- | print/cups-image/Makefile | 5 |
2 files changed, 2 insertions, 8 deletions
diff --git a/print/cups-client/Makefile b/print/cups-client/Makefile index 113a5b8199a..040bbe6f58e 100644 --- a/print/cups-client/Makefile +++ b/print/cups-client/Makefile @@ -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" diff --git a/print/cups-image/Makefile b/print/cups-image/Makefile index 1a522d8ec40..fadf7e9e67a 100644 --- a/print/cups-image/Makefile +++ b/print/cups-image/Makefile @@ -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" |