summaryrefslogtreecommitdiff
path: root/guix/build
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2013-03-30 11:31:50 +0100
committerLudovic Courtès <ludo@gnu.org>2013-03-30 21:46:59 +0100
commita96748bb46c6da65c7d66cb6d4f0d6f19febda27 (patch)
treea96cfc8b945925743dc73c2cce63b817dff45c25 /guix/build
parent4928e50033615e1d130dd84f131eff4cbc702ccf (diff)
build-system/gnu: Remove #:path-exclusions parameter.
* guix/build/gnu-build-system.scm (set-paths): Remove `path-exclusions' parameter. Replace `relevant-input-directories' by `input-directories'. * guix/build-system/gnu.scm (gnu-build): Remove `path-exclusions' parameter; don't pass it in BUILDER. * guix/build-system/cmake.scm (cmake-build): Likewise.
Diffstat (limited to 'guix/build')
-rw-r--r--guix/build/gnu-build-system.scm26
1 files changed, 9 insertions, 17 deletions
diff --git a/guix/build/gnu-build-system.scm b/guix/build/gnu-build-system.scm
index 8fc6f86507..891c30df8f 100644
--- a/guix/build/gnu-build-system.scm
+++ b/guix/build/gnu-build-system.scm
@@ -48,34 +48,26 @@
#f
dir))
-(define* (set-paths #:key inputs (path-exclusions '())
+(define* (set-paths #:key inputs
#:allow-other-keys)
- (define (relevant-input-directories env-var)
- ;; Return the subset of INPUTS that should be considered when setting
- ;; ENV-VAR.
- (match (assoc-ref path-exclusions env-var)
- (#f
- (map cdr inputs))
- ((excluded ...)
- (filter-map (match-lambda
- ((name . dir)
- (and (not (member name excluded))
- dir)))
- inputs))))
+ (define input-directories
+ (match inputs
+ (((_ . dir) ...)
+ dir)))
(set-path-environment-variable "PATH" '("bin")
- (relevant-input-directories "PATH"))
+ input-directories)
(set-path-environment-variable "CPATH" '("include")
- (relevant-input-directories "CPATH"))
+ input-directories)
(set-path-environment-variable "LIBRARY_PATH" '("lib" "lib64")
- (relevant-input-directories "LIBRARY_PATH"))
+ input-directories)
;; FIXME: Eventually move this to the `search-paths' field of the
;; `pkg-config' package.
(set-path-environment-variable "PKG_CONFIG_PATH"
'("lib/pkgconfig" "lib64/pkgconfig"
"share/pkgconfig")
- (relevant-input-directories "PKG_CONFIG_PATH"))
+ input-directories)
;; Dump the environment variables as a shell script, for handy debugging.
(system "export > environment-variables"))