build: ruby: Install executables in /bin.
* guix/build/ruby-build-system.scm (install): Add '--bindir' flag to gem command.master
parent
7e7c6a1ac0
commit
f3c96d474f
|
@ -61,13 +61,14 @@ directory."
|
||||||
(match:substring (string-match "ruby-(.*)$"
|
(match:substring (string-match "ruby-(.*)$"
|
||||||
(assoc-ref inputs "ruby"))
|
(assoc-ref inputs "ruby"))
|
||||||
1))
|
1))
|
||||||
(gem-home (string-append (assoc-ref outputs "out")
|
(out (assoc-ref outputs "out"))
|
||||||
"/lib/ruby/gems/"
|
(gem-home (string-append out "/lib/ruby/gems/" ruby-version)))
|
||||||
ruby-version)))
|
|
||||||
(setenv "GEM_HOME" gem-home)
|
(setenv "GEM_HOME" gem-home)
|
||||||
(mkdir-p gem-home)
|
(mkdir-p gem-home)
|
||||||
(zero? (system* "gem" "install" "--local"
|
(zero? (system* "gem" "install" "--local"
|
||||||
(first-matching-file "\\.gem$")))))
|
(first-matching-file "\\.gem$")
|
||||||
|
;; Executables should go into /bin, not /lib/ruby/gems.
|
||||||
|
"--bindir" (string-append out "/bin")))))
|
||||||
|
|
||||||
(define %standard-phases
|
(define %standard-phases
|
||||||
(alist-cons-after
|
(alist-cons-after
|
||||||
|
|
Reference in New Issue