gnu: ams-lv2: Always return #t from phase remove-sse-flags.
* gnu/packages/music.scm (ams-lv2)[arguments]: Use '(unless' instead of '(when (not'. Return with #t as last value from phase 'remove-sse-flags'.
This commit is contained in:
parent
e029d90f45
commit
6cbb2c8721
|
@ -2310,11 +2310,11 @@ follows a traditional multi-track tape recorder control paradigm.")
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'remove-sse-flags
|
(add-after 'unpack 'remove-sse-flags
|
||||||
(lambda* (#:key system #:allow-other-keys)
|
(lambda* (#:key system #:allow-other-keys)
|
||||||
(when (not (or (string-prefix? "x86_64" system)
|
(unless (or (string-prefix? "x86_64" system)
|
||||||
(string-prefix? "i686" system)))
|
(string-prefix? "i686" system))
|
||||||
(substitute* "wscript"
|
(substitute* "wscript"
|
||||||
(("'-msse', '-mfpmath=sse', ") ""))
|
(("'-msse', '-mfpmath=sse', ") "")))
|
||||||
#t))))
|
#t)))
|
||||||
#:tests? #f)) ; no tests
|
#:tests? #f)) ; no tests
|
||||||
(inputs
|
(inputs
|
||||||
`(("lv2" ,lv2)
|
`(("lv2" ,lv2)
|
||||||
|
|
Loading…
Reference in New Issue