guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/03: gnu: bc: Actually use readline.


From: Tobias Geerinckx-Rice
Subject: 02/03: gnu: bc: Actually use readline.
Date: Tue, 4 Apr 2017 21:31:24 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit f0bacad682734371fc5b5ed732625ae2c629973b
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Wed Apr 5 03:10:24 2017 +0200

    gnu: bc: Actually use readline.
    
    * gnu/packages/algebra.scm (bc)[arguments]: Add ‘--with-readline’
    to #:configure-flags.
---
 gnu/packages/algebra.scm | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm
index d7f3203..ab73a6e 100644
--- a/gnu/packages/algebra.scm
+++ b/gnu/packages/algebra.scm
@@ -4,6 +4,7 @@
 ;;; Copyright © 2016 Nicolas Goaziou <address@hidden>
 ;;; Copyright © 2014 Mark H Weaver <address@hidden>
 ;;; Copyright © 2016 Ricardo Wurmus <address@hidden>
+;;; Copyright © 2017 Tobias Geerinckx-Rice <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -494,7 +495,9 @@ binary.")
                             ;; PREFIX/share/{man,info}.
                             (string-append "--mandir=" out "/share/man")
                             (string-append "--infodir=" out "/share/info")))))
-                      %standard-phases)))
+                      %standard-phases)
+       #:configure-flags
+       (list "--with-readline")))
     (home-page "https://www.gnu.org/software/bc/";)
     (synopsis "Arbitrary precision numeric processing language")
     (description



reply via email to

[Prev in Thread] Current Thread [Next in Thread]