diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2013-08-26 00:14:58 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2013-08-26 00:14:58 +0800 |
commit | 0d3a14a8395fb30453dab9fa7d736dd3149e7c7e (patch) | |
tree | b54dbe88f1393a9b7d345fa226b1c0546c1e89eb /graphics/lcms2 | |
parent | 0f420081afbd740244195390306f35e445ab8c4e (diff) | |
download | freebsd-ports-gnome-0d3a14a8395fb30453dab9fa7d736dd3149e7c7e.tar.gz freebsd-ports-gnome-0d3a14a8395fb30453dab9fa7d736dd3149e7c7e.tar.zst freebsd-ports-gnome-0d3a14a8395fb30453dab9fa7d736dd3149e7c7e.zip |
- Use !${PORT_OPTIONS:Mfoo} instead of empty(PORT_OPTIONS:Mfoo)
Diffstat (limited to 'graphics/lcms2')
-rw-r--r-- | graphics/lcms2/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/lcms2/Makefile b/graphics/lcms2/Makefile index 18af41623373..f82b25843e77 100644 --- a/graphics/lcms2/Makefile +++ b/graphics/lcms2/Makefile @@ -52,10 +52,10 @@ PLIST_SUB+= TIFFICC="@comment " .endif post-patch: -.if empty(PORT_OPTIONS:MJPEGICC) +.if !${PORT_OPTIONS:MJPEGICC} @${REINPLACE_CMD} -e '/^SUBDIRS = / s| utils/jpgicc||' ${WRKSRC}/Makefile.in .endif -.if empty(PORT_OPTIONS:MTIFFICC) +.if !${PORT_OPTIONS:MTIFFICC} @${REINPLACE_CMD} -e '/^SUBDIRS = / s| utils/tificc||' ${WRKSRC}/Makefile.in .endif |