diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-11-13 17:46:57 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-11-13 17:46:57 +0100 |
commit | a480307449fa949ac5624c98e573b28fc3d70a9f (patch) | |
tree | 9d58eadf707111ab755d173d61ba76a13a52bf94 /build-aux/hydra | |
parent | 9de1defe790d8baa6a230b2d02e7ba023783b022 (diff) | |
download | patches-a480307449fa949ac5624c98e573b28fc3d70a9f.tar patches-a480307449fa949ac5624c98e573b28fc3d70a9f.tar.gz |
Revert "hydra: Build only non-grafted variants of the packages."
This reverts commit 9de1defe790d8baa6a230b2d02e7ba023783b022.
Passing #:graft? was not possible because of the use of 'cut' on call
sites.
Diffstat (limited to 'build-aux/hydra')
-rw-r--r-- | build-aux/hydra/gnu-system.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/build-aux/hydra/gnu-system.scm b/build-aux/hydra/gnu-system.scm index 06a8048f32..6bcfbf5dc3 100644 --- a/build-aux/hydra/gnu-system.scm +++ b/build-aux/hydra/gnu-system.scm @@ -70,8 +70,7 @@ #:optional (package-derivation package-derivation)) "Convert PACKAGE to an alist suitable for Hydra." `((derivation . ,(derivation-file-name - (package-derivation store package system - #:graft? #f))) + (package-derivation store package system))) (description . ,(package-synopsis package)) (long-description . ,(package-description package)) (license . ,(package-license package)) |