diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-07-07 23:27:37 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-07-07 23:27:37 +0200 |
commit | 0403b04d768ab6aa52320ce9b90ac2915d0ee498 (patch) | |
tree | a3eec1b6aa46e9293ccbf5a1c9cbb1b1dd662b2f | |
parent | 6fe808f4c3272cbf5329054aacfb1bafc302c4bc (diff) | |
download | patches-0403b04d768ab6aa52320ce9b90ac2915d0ee498.tar patches-0403b04d768ab6aa52320ce9b90ac2915d0ee498.tar.gz |
gnu: jalv: Remove GCC5 workaround.
* gnu/packages/audio.scm (jalv)[arguments]: Remove <#:phases>.
-rw-r--r-- | gnu/packages/audio.scm | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 7024c46bb5..83e09a731f 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -1595,15 +1595,7 @@ synchronous execution of all clients, and low latency operation.") (build-system waf-build-system) (arguments `(#:tests? #f ; no check target - #:python ,python-2 - #:phases - (modify-phases %standard-phases - (add-before - 'configure 'set-flags - (lambda _ - ;; Compile with C++11, required by gtkmm. - (setenv "CXXFLAGS" "-std=c++11") - #t))))) + #:python ,python-2)) (inputs `(("lv2" ,lv2) ("lilv" ,lilv) |