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
|
||||
(add-after 'unpack 'remove-sse-flags
|
||||
(lambda* (#:key system #:allow-other-keys)
|
||||
(when (not (or (string-prefix? "x86_64" system)
|
||||
(string-prefix? "i686" system)))
|
||||
(unless (or (string-prefix? "x86_64" system)
|
||||
(string-prefix? "i686" system))
|
||||
(substitute* "wscript"
|
||||
(("'-msse', '-mfpmath=sse', ") ""))
|
||||
#t))))
|
||||
(("'-msse', '-mfpmath=sse', ") "")))
|
||||
#t)))
|
||||
#:tests? #f)) ; no tests
|
||||
(inputs
|
||||
`(("lv2" ,lv2)
|
||||
|
|
Loading…
Reference in New Issue