build-system/gnu: Add support for the "bin" output.

* guix/build/gnu-build-system.scm (configure): Add support for "bin"
  output.
This commit is contained in:
Ludovic Courtès 2013-01-01 16:52:27 +01:00
parent bc5bf85fa2
commit b2adb3ae04

View file

@ -116,6 +116,7 @@ (define* (patch #:key (patches '()) (patch-flags '("--batch" "-p1"))
(define* (configure #:key inputs outputs (configure-flags '()) out-of-source?
#:allow-other-keys)
(let* ((prefix (assoc-ref outputs "out"))
(bindir (assoc-ref outputs "bin"))
(libdir (assoc-ref outputs "lib"))
(includedir (assoc-ref outputs "include"))
(bash (or (and=> (assoc-ref inputs "bash")
@ -128,6 +129,9 @@ (define* (configure #:key inputs outputs (configure-flags '()) out-of-source?
;; Produce multiple outputs when specific output names
;; are recognized.
,@(if bindir
(list (string-append "--bindir=" bindir "/bin"))
'())
,@(if libdir
(list (string-append "--libdir=" libdir "/lib"))
'())