diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-02-07 11:29:28 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-02-07 15:04:12 +0100 |
commit | cd53d64876a3148b3c64e2c3ee36560ac6c0c3fe (patch) | |
tree | 33c25a762bb4fd00c825f473be75038353752566 /gnu | |
parent | 3339f6f5503d86b418753533afdca2dddb253e2f (diff) | |
download | guix-cd53d64876a3148b3c64e2c3ee36560ac6c0c3fe.tar.gz |
gnu: foo-yc20: Use gexp.
* gnu/packages/music.scm (foo-yc20)[arguments]: Use gexp.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/music.scm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 38a0a34bb9..b2d1f350d4 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -5959,17 +5959,17 @@ and debugging of event signal flows inside plugin graphs.") "1drzfyr7mzb58pdv0gsqkg6ds6kbgp6g25rrv1yya1611cljgvjh")))) (build-system gnu-build-system) (arguments - `(#:make-flags - (list (string-append "PREFIX=" (assoc-ref %outputs "out"))) - #:tests? #f ; no automated test - #:phases - (modify-phases %standard-phases + (list + #:make-flags + #~(list (string-append "PREFIX=" #$output)) + #:tests? #f ; no automated test + #:phases + '(modify-phases %standard-phases (replace 'configure (lambda _ (substitute* "Makefile" (("-mtune=native") "") - (("-march=native") "")) - #t))))) + (("-march=native") ""))))))) (inputs (list cairo gtk+-2 |