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 14:51:53 -0400 |
commit | 65400c3c3bdeb9d8c851471b62e14ceddfd87ccb (patch) | |
tree | 3a9e63b8215d40b3c14e3f2e3c4d7f857c55025b /guix/profiles.scm | |
parent | 18119fe288166ff480ca27a1351b09e9c31c1463 (diff) |
profiles: manual-database: Remove GDBM workaround.
* guix/profiles.scm (manual-database): No longer set the MALLOC_PERTURB_
environment variable.
Diffstat (limited to 'guix/profiles.scm')
-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 |