gnu: infamous-plugins: Patch all occurrences of compiler optimizations.
* gnu/packages/audio.scm (infamous-plugins)[arguments]: Use 'find-files' to find all files to remove optimizations.
This commit is contained in:
parent
2660e6a319
commit
3e0e9e1630
|
@ -4,7 +4,7 @@
|
||||||
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
|
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
|
||||||
;;; Copyright © 2015 Alex Kost <alezost@gmail.com>
|
;;; Copyright © 2015 Alex Kost <alezost@gmail.com>
|
||||||
;;; Copyright © 2015, 2016 Mark H Weaver <mhw@netris.org>
|
;;; Copyright © 2015, 2016 Mark H Weaver <mhw@netris.org>
|
||||||
;;; Copyright © 2016, 2017 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2016, 2017, 2018 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2016, 2017 Alex Griffin <a@ajgrf.com>
|
;;; Copyright © 2016, 2017 Alex Griffin <a@ajgrf.com>
|
||||||
;;; Copyright © 2016 Nils Gillmann <ng0@n0.is>
|
;;; Copyright © 2016 Nils Gillmann <ng0@n0.is>
|
||||||
;;; Copyright © 2016 Lukas Gradl <lgradl@openmailbox.org>
|
;;; Copyright © 2016 Lukas Gradl <lgradl@openmailbox.org>
|
||||||
|
@ -569,16 +569,7 @@ based on human speech recordings.")
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'remove-compiler-flags
|
(add-after 'unpack 'remove-compiler-flags
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* '("src/casynth/CMakeLists.txt"
|
(substitute* (find-files "." "CMakeLists.txt")
|
||||||
"src/cheapdist/CMakeLists.txt"
|
|
||||||
"src/duffer/CMakeLists.txt"
|
|
||||||
"src/envfollower/CMakeLists.txt"
|
|
||||||
"src/ewham/CMakeLists.txt"
|
|
||||||
"src/hip2b/CMakeLists.txt"
|
|
||||||
"src/lushlife/CMakeLists.txt"
|
|
||||||
"src/powercut/CMakeLists.txt"
|
|
||||||
"src/powerup/CMakeLists.txt"
|
|
||||||
"src/stuck/CMakeLists.txt")
|
|
||||||
(("-msse2 -mfpmath=sse") ""))
|
(("-msse2 -mfpmath=sse") ""))
|
||||||
#t)))))
|
#t)))))
|
||||||
(inputs
|
(inputs
|
||||||
|
|
Loading…
Reference in New Issue