From c01f767843627bf016083c5b2daca45ce572ac28 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Thu, 5 Dec 2013 23:07:23 +0100 Subject: gnu: pulseaudio: Fix typo introduced in 76dcc99. * gnu/packages/pulseaudio.scm (pulseaudio): Disable tests on i686. (pavucontrol): Remove 'arguments'. --- gnu/packages/pulseaudio.scm | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/gnu/packages/pulseaudio.scm b/gnu/packages/pulseaudio.scm index 580c3336bb..d8c766d5c2 100644 --- a/gnu/packages/pulseaudio.scm +++ b/gnu/packages/pulseaudio.scm @@ -146,7 +146,7 @@ parse JSON formatted strings back into the C representation of JSON objects.") (patches (list (search-patch "pulseaudio-test-timeouts.patch"))))) (build-system gnu-build-system) (arguments - '(#:configure-flags '("--localstatedir=/var" ;"--sysconfdir=/etc" + `(#:configure-flags '("--localstatedir=/var" ;"--sysconfdir=/etc" "--disable-oss-output") #:phases (alist-cons-before 'check 'pre-check @@ -154,7 +154,13 @@ parse JSON formatted strings back into the C representation of JSON objects.") ;; 'tests/lock-autospawn-test.c' wants to create a file ;; under ~/.config/pulse. (setenv "HOME" (getcwd))) - %standard-phases))) + %standard-phases) + + ,@(if (string=? (%current-system) "i686-linux") + ;; Work around test failure: + ;; . + '(#:tests? #f) + '()))) (inputs ;; TODO: Add optional inputs (GTK+?). `(;; ("sbc" ,sbc) @@ -204,12 +210,6 @@ mixing several sounds into one are easily achieved using a sound server. ") (base32 "02s775m1531sshwlbvfddk3pz8zjmwkv1sgzggn386ja3gc9vwi2")))) (build-system gnu-build-system) - (arguments - (if (string=? (%current-system) "i686-linux") - ;; Work around test failure: - ;; . - '(#:tests? #f) - '())) (inputs `(("intltool" ,intltool) ("libcanberra" ,libcanberra) -- cgit v1.2.3