From: Mike Hommey Date: Sun, 2 Nov 2014 01:26:21 +0000 (+0900) Subject: Work around binutils assertion on mips X-Git-Tag: archive/raspbian/60.4.0esr-1+rpi1~1^2^2~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=b467a8f8e20e617306659727e4b083e48f57c857;p=firefox-esr.git Work around binutils assertion on mips Gbp-Pq: Topic debian-hacks Gbp-Pq: Name Work-around-binutils-assertion-on-mips.patch --- diff --git a/media/libcubeb/tests/moz.build b/media/libcubeb/tests/moz.build index 4088f7c1259..89410b9870e 100644 --- a/media/libcubeb/tests/moz.build +++ b/media/libcubeb/tests/moz.build @@ -4,16 +4,17 @@ # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. -GeckoCppUnitTests([ - 'test_tone' -]) +if CONFIG['CPU_ARCH'] != 'mips': + GeckoCppUnitTests([ + 'test_tone' + ]) -if CONFIG['OS_TARGET'] != 'Android': - GeckoCppUnitTests([ - 'test_audio', - 'test_latency', - 'test_sanity' - ]) + if CONFIG['OS_TARGET'] != 'Android': + GeckoCppUnitTests([ + 'test_audio', + 'test_latency', + 'test_sanity' + ]) LOCAL_INCLUDES += [ '../include'