diff options
author | Ludovic Courtès <ludo@gnu.org> | 2012-09-01 01:14:31 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2012-09-01 01:14:31 +0200 |
commit | dc4e02572ec8726957402c1b0c2c6d37e2589af7 (patch) | |
tree | 5e72ae07cf3fffbb2a3bbfc1bb385aef0ed7c1f9 /guix/build-system | |
parent | f1f100b297fd0bf1fad4a1dc1b2764c6e85901db (diff) |
build-system/gnu: Add `path-exclusions' parameter.
* guix/build/gnu-build-system.scm (set-paths): Add new `path-exclusions'
parameter; honor it.
* guix/build-system/gnu.scm (gnu-build): New `path-exclusions' keyword
parameter; pass it to BUILDER.
* distro/base.scm (gcc-4.7): Exclude "libc" from $LIBRARY_PATH.
Diffstat (limited to 'guix/build-system')
-rw-r--r-- | guix/build-system/gnu.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/guix/build-system/gnu.scm b/guix/build-system/gnu.scm index 7bdd4174bd..f4e7c1bcc4 100644 --- a/guix/build-system/gnu.scm +++ b/guix/build-system/gnu.scm @@ -47,6 +47,7 @@ (make-flags ''()) (patches ''()) (patch-flags ''("--batch" "-p1")) (out-of-source? #f) + (path-exclusions ''()) (tests? #t) (parallel-build? #t) (parallel-tests? #t) (patch-shebangs? #t) @@ -74,6 +75,7 @@ input derivation INPUTS, using the usual procedure of the GNU Build System." #:configure-flags ,configure-flags #:make-flags ,make-flags #:out-of-source? ,out-of-source? + #:path-exclusions ,path-exclusions #:tests? ,tests? #:parallel-build? ,parallel-build? #:parallel-tests? ,parallel-tests? |