From b467a8f8e20e617306659727e4b083e48f57c857 Mon Sep 17 00:00:00 2001 From: Mike Hommey Date: Sun, 2 Nov 2014 10:26:21 +0900 Subject: [PATCH] Work around binutils assertion on mips Gbp-Pq: Topic debian-hacks Gbp-Pq: Name Work-around-binutils-assertion-on-mips.patch --- media/libcubeb/tests/moz.build | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) 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' -- 2.30.2