emerge -C asdf-binary-locations cat /etc/gentoo-init.lisp will show that it still tries to load asdf-binary-locations. Reproducible: Always Steps to Reproduce: 1.emerge -C asdf-binary-locations 2.cat /etc/gentoo-init.lisp 3.shows that it still tries to load asdf-binary-locations. Actual Results: (in-package #:cl-user) #+(or sbcl ecl) (require :asdf) #-(or sbcl ecl) (load #p"/usr/share/common-lisp/source/asdf/asdf.lisp") (push #p"/usr/share/common-lisp/systems/" asdf:*central-registry*) (asdf:oos 'asdf:load-op :asdf-binary-locations) (setf asdf:*centralize-lisp-binaries* t) (setf asdf:*source-to-target-mappings* '((#p"/usr/lib/sbcl/" nil) (#p"/usr/lib64/sbcl/" nil))) Expected Results: (in-package #:cl-user) #+(or sbcl ecl) (require :asdf) #-(or sbcl ecl) (load #p"/usr/share/common-lisp/source/asdf/asdf.lisp") (push #p"/usr/share/common-lisp/systems/" asdf:*central-registry*)
removed from the tree