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 /audio | |
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 'audio')
-rw-r--r-- | audio/libfishsound/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/libfishsound/Makefile b/audio/libfishsound/Makefile index eedde4538859..efb81942a360 100644 --- a/audio/libfishsound/Makefile +++ b/audio/libfishsound/Makefile @@ -31,7 +31,7 @@ PORTDOCS= * .endif post-patch: -.if empty(PORT_OPTIONS:MDOCS) || empty(PORT_OPTIONS:MDOXYGEN) +.if !${PORT_OPTIONS:MDOCS} || !${PORT_OPTIONS:MDOXYGEN} @${REINPLACE_CMD} -e '/^SUBDIRS = / s| doc||' ${WRKSRC}/Makefile.in .endif |