diff options
author | danfe <danfe@FreeBSD.org> | 2015-07-25 02:07:08 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2015-07-25 02:07:08 +0800 |
commit | 1f6b4aa661a24ba4bd0c0451046d7f8a7124b22e (patch) | |
tree | 0ccfad265c83fa30ef8d5b2de8591f4479f3e08f /audio | |
parent | 11e70de42b8aee0bc920aff808cc8244740a1ac8 (diff) | |
download | freebsd-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-wscript | 2 |
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') |