diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-05-25 22:58:31 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-05-25 23:00:30 +0200 |
commit | 2c402b1a156f13e6377671c1d0eb4437806b96ea (patch) | |
tree | 12102fd22bb5906926ab1d83e1c889423ff51812 /guix | |
parent | 9e91983055e72f5f8380d9642d3495909c25e147 (diff) |
gexp: The result of 'imported-files/derivation' is non-substitutable.
* guix/gexp.scm (imported-files/derivation): Pass #:substitutable? #f to
'gexp->derivation'.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/gexp.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/guix/gexp.scm b/guix/gexp.scm index 510a1d54c3..67b6121313 100644 --- a/guix/gexp.scm +++ b/guix/gexp.scm @@ -1443,6 +1443,7 @@ to the source files instead of copying them." #:system system #:guile-for-build guile #:local-build? #t + #:substitutable? #f ;; Avoid deprecation warnings about the use of the _IO* ;; constants in (guix build utils). |