diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-02-24 23:00:29 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-02-24 23:43:03 +0100 |
commit | 43da8f018d5835b62e8f5f1f4e2cc701f828a3db (patch) | |
tree | 8663c8bb5af0408e287f3caf479d582712cdeb55 /build-aux/check-final-inputs-self-contained.scm | |
parent | 9ffee4571c0bf645ffeba2442a0065fb224d9765 (diff) | |
download | guix-43da8f018d5835b62e8f5f1f4e2cc701f828a3db.tar guix-43da8f018d5835b62e8f5f1f4e2cc701f828a3db.tar.gz |
build: Disable grafting in sanity checks.
* build-aux/check-available-binaries.scm: Wrap body in 'parameterize'
form that clears '%graft?'.
* build-aux/check-final-inputs-self-contained.scm: Likewise.
Diffstat (limited to 'build-aux/check-final-inputs-self-contained.scm')
-rw-r--r-- | build-aux/check-final-inputs-self-contained.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/build-aux/check-final-inputs-self-contained.scm b/build-aux/check-final-inputs-self-contained.scm index ca7e8030b4..ba85c876d2 100644 --- a/build-aux/check-final-inputs-self-contained.scm +++ b/build-aux/check-final-inputs-self-contained.scm @@ -73,8 +73,9 @@ refer to the bootstrap tools." ;; Entry point. (with-store store - (set-build-options store #:use-substitutes? #t) + (parameterize ((%graft? #f)) + (set-build-options store #:use-substitutes? #t) - (for-each (cut test-final-inputs store <>) - %supported-systems)) + (for-each (cut test-final-inputs store <>) + %supported-systems))) |