diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-03-21 17:15:27 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-03-22 15:43:22 -0400 |
commit | 8e3d4f05dfc852f4584c94aebb04bc74138c933d (patch) | |
tree | 7544d34df1a9137e283c9ab4f0bdaf511f339ffa | |
parent | d8a7e37b86e3d5fffbe77f691d686f8f973616db (diff) |
profiles: manual-database: Remove GDBM workaround.
* guix/profiles.scm (manual-database): No longer set the MALLOC_PERTURB_
environment variable.
-rw-r--r-- | guix/profiles.scm | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/guix/profiles.scm b/guix/profiles.scm index bad9b95519..3a547de492 100644 --- a/guix/profiles.scm +++ b/guix/profiles.scm @@ -1716,12 +1716,6 @@ the entries in MANIFEST." (force-output)))))) (gexp->derivation "manual-database" build - - ;; Work around GDBM 1.13 issue whereby uninitialized bytes - ;; get written to disk: - ;; <https://debbugs.gnu.org/cgi/bugreport.cgi?bug=29654#23>. - #:env-vars `(("MALLOC_PERTURB_" . "1")) - #:substitutable? #f #:local-build? #t #:properties |