diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-05-06 17:52:24 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-05-06 23:16:53 +0300 |
commit | f4c954e314712df51abbde8f3e38c089cbc0e9d0 (patch) | |
tree | e0af86a8f8f62689fc70cfb017399e224d4a7f8b | |
parent | 5a69a52d746bb542ee70088679a9b3747182b89a (diff) | |
download | guix-f4c954e314712df51abbde8f3e38c089cbc0e9d0.tar.gz guix-f4c954e314712df51abbde8f3e38c089cbc0e9d0.zip |
gnu: wolf-shaper: Fix building on more architectures.
* gnu/packages/music.scm (wolf-shaper)[arguments]: Add make-flag to
disable optimizations.
Change-Id: I2976d1769324765df3f0aa8b636f528526bdfd78
-rw-r--r-- | gnu/packages/music.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 2c8267ddb0..381758cf8c 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -3,7 +3,7 @@ ;;; Copyright © 2015-2024 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2015 Paul van der Walt <paul@denknerd.org> ;;; Copyright © 2016 Al McElrath <hello@yrns.org> -;;; Copyright © 2016, 2017, 2019, 2021-2023 Efraim Flashner <efraim@flashner.co.il> +;;; Copyright © 2016, 2017, 2019, 2021-2024 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2016, 2018, 2021 Leo Famulari <leo@famulari.name> ;;; Copyright © 2016, 2017, 2019 Kei Kebreau <kkebreau@posteo.net> ;;; Copyright © 2016 John J. Foerch <jjfoerch@earthlink.net> @@ -7297,7 +7297,8 @@ plugin and a standalone JACK application.") (build-system gnu-build-system) (arguments `(#:tests? #f ; no check target - #:make-flags (list "CC=gcc") + #:make-flags (list "CC=gcc" + "NOOPT=true") #:phases (modify-phases %standard-phases (delete 'configure) ;no configure target |