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'.
master
Björn Höfling 2018-11-26 17:24:21 +01:00
parent e029d90f45
commit 6cbb2c8721
No known key found for this signature in database
GPG Key ID: BF286CB6593E5FFD
1 changed files with 4 additions and 4 deletions

View File

@ -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)