gnu: pulseaudio: Fix typo introduced in 76dcc99.

* gnu/packages/pulseaudio.scm (pulseaudio): Disable tests on i686.
  (pavucontrol): Remove 'arguments'.
This commit is contained in:
Ludovic Courtès 2013-12-05 23:07:23 +01:00
parent 14f550c31c
commit c01f767843

View file

@ -146,7 +146,7 @@ (define pulseaudio
(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 @@ (define pulseaudio
;; '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:
;; <https://bugs.freedesktop.org/show_bug.cgi?id=72374>.
'(#:tests? #f)
'())))
(inputs
;; TODO: Add optional inputs (GTK+?).
`(;; ("sbc" ,sbc)
@ -204,12 +210,6 @@ (define-public pavucontrol
(base32
"02s775m1531sshwlbvfddk3pz8zjmwkv1sgzggn386ja3gc9vwi2"))))
(build-system gnu-build-system)
(arguments
(if (string=? (%current-system) "i686-linux")
;; Work around test failure:
;; <https://bugs.freedesktop.org/show_bug.cgi?id=72374>.
'(#:tests? #f)
'()))
(inputs
`(("intltool" ,intltool)
("libcanberra" ,libcanberra)