Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 24 Jul 2015 18:07:09 +0000 (UTC)
From:      Alexey Dokuchaev <danfe@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r392833 - head/audio/aubio/files
Message-ID:  <201507241807.t6OI79pt037336@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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')



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201507241807.t6OI79pt037336>