[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#32687: guitarix-lv2 fails to build due to non-existent waf option
From: |
Thorsten Wilms |
Subject: |
bug#32687: guitarix-lv2 fails to build due to non-existent waf option |
Date: |
Mon, 10 Sep 2018 20:35:57 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.9.1 |
guitarix-lv2-0.37.1 fails with `waf: error: no such option: --lv2-only`
I think the right option is `--no-standalone`, described with "Don't
build standalone (JACK) application".
---
gnu/packages/audio.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 3b898c024..7e6feec35 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -1291,7 +1291,7 @@ auto-wah.")
(arguments
(substitute-keyword-arguments (package-arguments guitarix)
((#:configure-flags flags)
- `(cons "--lv2-only" ,flags))))))
+ `(cons "--no-standalone" ,flags))))))
(define-public rakarrack
(package
--
2.18.0
- bug#32687: guitarix-lv2 fails to build due to non-existent waf option,
Thorsten Wilms <=