diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-04-06 21:11:09 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-04-06 21:18:13 +0200 |
commit | 0ec6237b2ec48b2acd506788d6c1b734f27896e5 (patch) | |
tree | e578f916934b42fe1ec2d30f2ffd3b432819ee85 /build-aux/hydra | |
parent | 16605140947daf1f9016b1abc1e5c63ab241b38d (diff) | |
download | patches-0ec6237b2ec48b2acd506788d6c1b734f27896e5.tar patches-0ec6237b2ec48b2acd506788d6c1b734f27896e5.tar.gz |
hydra: qemu-jobs: Return a derivation file name, not a derivation.
* build-aux/hydra/gnu-system.scm (qemu-jobs)[->alist]: Return the
derivation file name, not the derivation.
Diffstat (limited to 'build-aux/hydra')
-rw-r--r-- | build-aux/hydra/gnu-system.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/hydra/gnu-system.scm b/build-aux/hydra/gnu-system.scm index 67794ff6e6..44191fa24a 100644 --- a/build-aux/hydra/gnu-system.scm +++ b/build-aux/hydra/gnu-system.scm @@ -117,7 +117,7 @@ SYSTEM." (define (qemu-jobs store system) "Return a list of jobs that build QEMU images for SYSTEM." (define (->alist drv) - `((derivation . ,drv) + `((derivation . ,(derivation-file-name drv)) (description . "Stand-alone QEMU image of the GNU system") (long-description . "This is a demo stand-alone QEMU image of the GNU system.") |