Date: Fri, 4 Nov 2016 00:29:00 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r425281 - head/Mk Message-ID: <201611040029.uA40T0ob040605@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jbeich Date: Fri Nov 4 00:29:00 2016 New Revision: 425281 URL: https://svnweb.freebsd.org/changeset/ports/425281 Log: www/firefox: unbreak build with DEBUG=on after r425099 Traceback (most recent call last): File "configure.py", line 94, in <module> sys.exit(main(sys.argv)) File "configure.py", line 22, in main sandbox.run(os.path.join(os.path.dirname(__file__), 'moz.configure')) File "python/mozbuild/mozbuild/configure/__init__.py", line 241, in run self._value_for(option) File "python/mozbuild/mozbuild/configure/__init__.py", line 305, in _value_for return self._value_for_option(obj) File "python/mozbuild/mozbuild/util.py", line 924, in method_call cache[args] = self.func(instance, *args) File "python/mozbuild/mozbuild/configure/__init__.py", line 370, in _value_for_option % (e.arg, reason, e.old_arg, e.old_origin)) mozbuild.configure.options.InvalidOptionError: '--enable-debug-symbols' implied by '--enable-debug' conflicts with '--disable-debug-symbols' from the mozconfig *** Fix above errors and then restart with\ "gmake -f client.mk build" MFH: 2016Q4 (blanket) Modified: head/Mk/bsd.gecko.mk (contents, props changed) Modified: head/Mk/bsd.gecko.mk ============================================================================== --- head/Mk/bsd.gecko.mk Fri Nov 4 00:09:51 2016 (r425280) +++ head/Mk/bsd.gecko.mk Fri Nov 4 00:29:00 2016 (r425281) @@ -266,8 +266,7 @@ MOZ_OPTIONS+= --enable-necko-protocols=$ .endif # others MOZ_OPTIONS+= --with-system-zlib \ - --with-system-bz2 \ - --disable-debug-symbols + --with-system-bz2 # API keys from www/chromium # http://www.chromium.org/developers/how-tos/api-keys @@ -381,7 +380,7 @@ MOZ_OPTIONS+= --disable-rust MOZ_OPTIONS+= --enable-debug --disable-release STRIP= # ports/184285 .else -MOZ_OPTIONS+= --disable-debug --enable-release +MOZ_OPTIONS+= --disable-debug --disable-debug-symbols --enable-release .endif .if ${PORT_OPTIONS:MDTRACE}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201611040029.uA40T0ob040605>