svn commit: r392833 - head/audio/aubio/files

Alexey Dokuchaev danfe at FreeBSD.org
Fri Jul 24 18:07:09 UTC 2015


Author: danfe
Date: Fri Jul 24 18:07:08 2015
New Revision: 392833
URL: https://svnweb.freebsd.org/changeset/ports/392833

Log:
  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)

Modified:
  head/audio/aubio/files/patch-wscript

Modified: head/audio/aubio/files/patch-wscript
==============================================================================
--- head/audio/aubio/files/patch-wscript	Fri Jul 24 17:28:27 2015	(r392832)
+++ head/audio/aubio/files/patch-wscript	Fri Jul 24 18:07:08 2015	(r392833)
@@ -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')


More information about the svn-ports-all mailing list