gnu: lcalc: Don't rename the include directory.

Sage no longer renames the directory, so we shouldn't either.

* gnu/packages/sagemath.scm (lcalc)[arguments]: Remove a substitution from
  the prepare-build phase.
This commit is contained in:
Jakub Kądziołka 2020-06-17 02:10:52 +02:00
parent 5b9822cf43
commit db7f74d2eb
No known key found for this signature in database
GPG key ID: E315A75846131564

View file

@ -368,10 +368,7 @@ (define-public lcalc
(let ((out (assoc-ref outputs "out")))
(substitute* "Makefile"
(("^INSTALL_DIR= /usr/local")
(string-append "INSTALL_DIR=" out))
;; Sage renames the include directory, so we do it also.
(("include/Lfunction")
"include/libLfunction")))
(string-append "INSTALL_DIR=" out))))
#t))
(add-before 'install 'make-output-dirs
(lambda* (#:key outputs #:allow-other-keys)