diff options
author | Peter Kreye <kreyepr@gmail.com> | 2018-01-13 05:14:18 -0600 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2018-02-01 23:09:08 +0100 |
commit | 2b4d2a4d0a100b67397eeb76f55e1cc20be4ae75 (patch) | |
tree | 0116902e2b9d2b6f2edc662276281664368ca728 /gnu/packages/ocaml.scm | |
parent | 95e545a4dafe82499c68625e0c145df45ac38484 (diff) | |
download | guix-2b4d2a4d0a100b67397eeb76f55e1cc20be4ae75.tar guix-2b4d2a4d0a100b67397eeb76f55e1cc20be4ae75.tar.gz |
gnu: ocaml-findlib-1.7.3: Fix install.
* gnu/packages/ocaml.scm (ocaml-findlib-1.7.3): install topfind to
lib/ocaml/site-lib
Signed-off-by: Julien Lepiller <julien@lepiller.eu>
Diffstat (limited to 'gnu/packages/ocaml.scm')
-rw-r--r-- | gnu/packages/ocaml.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index eab84c6981..6648f5ba40 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -9,6 +9,7 @@ ;;; Copyright © 2016, 2017 Julien Lepiller <julien@lepiller.eu> ;;; Copyright © 2017 Ben Woodcroft <donttrustben@gmail.com> ;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr> +;;; Copyright © 2018 Peter Kreye <kreyepr@gmail.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -918,7 +919,7 @@ compilers that can directly deal with packages.") (let ((out (assoc-ref outputs "out"))) (zero? (system* "make" "install" (string-append "OCAML_CORE_STDLIB=" - out)))))))))))) + out "/lib/ocaml/site-lib")))))))))))) (define-public ocaml4.01-findlib (package |