aboutsummaryrefslogtreecommitdiffstats
path: root/audio
diff options
context:
space:
mode:
authordanfe <danfe@FreeBSD.org>2015-07-25 02:07:08 +0800
committerdanfe <danfe@FreeBSD.org>2015-07-25 02:07:08 +0800
commit1f6b4aa661a24ba4bd0c0451046d7f8a7124b22e (patch)
tree0ccfad265c83fa30ef8d5b2de8591f4479f3e08f /audio
parent11e70de42b8aee0bc920aff808cc8244740a1ac8 (diff)
downloadfreebsd-ports-gnome-1f6b4aa661a24ba4bd0c0451046d7f8a7124b22e.tar.gz
freebsd-ports-gnome-1f6b4aa661a24ba4bd0c0451046d7f8a7124b22e.tar.zst
freebsd-ports-gnome-1f6b4aa661a24ba4bd0c0451046d7f8a7124b22e.zip
Fix the build with the DOXYGEN option enabled (do not bump port revision as
this option is not enabled by default). PR: 200556 (audit trail)
Diffstat (limited to 'audio')
-rw-r--r--audio/aubio/files/patch-wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/aubio/files/patch-wscript b/audio/aubio/files/patch-wscript
index 40c8f86f1b16..dcf4d5d2e0f1 100644
--- a/audio/aubio/files/patch-wscript
+++ b/audio/aubio/files/patch-wscript
@@ -25,7 +25,7 @@
# build documentation from source files using doxygen
- if bld.env['DOXYGEN']:
-+ if bld.env['DOXYGEN'] and not ctx.options.disable_doxygen:
++ if bld.env['DOXYGEN'] and not bld.options.disable_doxygen:
bld( name = 'doxygen', rule = 'doxygen ${SRC} > /dev/null',
source = 'doc/web.cfg',
cwd = 'doc')