diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-11-13 14:21:09 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-11-13 14:21:09 +0100 |
commit | 9de1defe790d8baa6a230b2d02e7ba023783b022 (patch) | |
tree | 4929e0d6b5aaeafb9bcf84a5ea6cbce8153f9da0 /build-aux | |
parent | db719df769f3e51728479129a592146a86cf7867 (diff) | |
download | patches-9de1defe790d8baa6a230b2d02e7ba023783b022.tar patches-9de1defe790d8baa6a230b2d02e7ba023783b022.tar.gz |
hydra: Build only non-grafted variants of the packages.
* build-aux/hydra/gnu-system.scm (package->alist): Pass #:graft? #f to
PACKAGE-DERIVATION.
Diffstat (limited to 'build-aux')
-rw-r--r-- | build-aux/hydra/gnu-system.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build-aux/hydra/gnu-system.scm b/build-aux/hydra/gnu-system.scm index 6bcfbf5dc3..06a8048f32 100644 --- a/build-aux/hydra/gnu-system.scm +++ b/build-aux/hydra/gnu-system.scm @@ -70,7 +70,8 @@ #:optional (package-derivation package-derivation)) "Convert PACKAGE to an alist suitable for Hydra." `((derivation . ,(derivation-file-name - (package-derivation store package system))) + (package-derivation store package system + #:graft? #f))) (description . ,(package-synopsis package)) (long-description . ,(package-description package)) (license . ,(package-license package)) |