diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-06-17 15:54:17 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-06-17 15:54:17 +0200 |
commit | 3c6b9fb5d2627c9f23b58ce530025a8dc8cc3c3c (patch) | |
tree | edebed577f60bcd14349b99f361fecb1533a1d19 /guix/packages.scm | |
parent | 1380be3c73bb8734622df8972f80f9a5bfaf06dd (diff) | |
download | gnu-guix-3c6b9fb5d2627c9f23b58ce530025a8dc8cc3c3c.tar gnu-guix-3c6b9fb5d2627c9f23b58ce530025a8dc8cc3c3c.tar.gz |
gexp: Remove #:pre-load-modules? parameter.
* guix/gexp.scm (gexp->derivation): Remove #:pre-load-modules?.
(compiled-modules): Likewise. Inline the case correspoding to
PRE-LOAD-MODULES? = #t.
* guix/packages.scm (patch-and-repack): Remove #:pre-load-modules?.
Diffstat (limited to 'guix/packages.scm')
-rw-r--r-- | guix/packages.scm | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/guix/packages.scm b/guix/packages.scm index 9cd4cbc416..92859be441 100644 --- a/guix/packages.scm +++ b/guix/packages.scm @@ -642,9 +642,6 @@ specifies modules in scope when evaluating SNIPPET." (let ((name (tarxz-name original-file-name))) (gexp->derivation name build - ;; TODO: Remove this on the next rebuild cycle. - #:pre-load-modules? #f - #:graft? #f #:system system #:deprecation-warnings #t ;to avoid a rebuild |