diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-26 19:37:21 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-27 12:46:39 +0200 |
commit | 3107259f05818c251aec96571f0ddefcf86a1c87 (patch) | |
tree | d99dd9a9c2481fd1ad50d6c82b1026d0a11329fb /gnu | |
parent | 3a28209c316c8965b2669c6820fbd177ec572b76 (diff) |
gnu: ghmm: Return #t from all phases.
* gnu/packages/machine-learning.scm (ghmm)[arguments]: Substitute INVOKE
for SYSTEM*.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/machine-learning.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm index 59e38bb88e..d9f7731632 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm @@ -233,7 +233,7 @@ classification.") #t)) (add-after 'disable-broken-tests 'autogen (lambda _ - (zero? (system* "bash" "autogen.sh"))))))) + (invoke "bash" "autogen.sh")))))) (inputs `(("python" ,python-2) ; only Python 2 is supported ("libxml2" ,libxml2))) |