Description of problem: common-lisp-controller no longer works due to sbcl update Version-Release number of selected component (if applicable): How reproducible: Every time Steps to Reproduce: 1. start SBCL 2. (require :cl-ppcre) [or some other common-lisp-controller libary) 3. see failure Actual results: SBCL errors Expected results: loaded library Additional info: This is due to SBCL renaming SB-UNIX:UNIX-FILE-KIND to SB-IMPL::NATIVE-FILE-KIND. The easiest fix is to patch /usr/share/common-lisp/source/common-lisp-controller/post-sysdef-install.lisp to call SB-IMPL::NATIVE-FILE-KIND; without this fix CLC simply won't load.
Created attachment 361980 [details] Patch to use SB-IMPL::NATIVE-FILE-KIND This changes SB-UNIX:UNIX-FILE-KIND to SB-IMPL::NATIVE-FILE-KIND
Looks backwards to me? --- file_not_specified_in_diff +++ file_not_specified_in_diff @@ -64,1 +64,1 @@ - (sb-impl::native-file-kind (namestring directory))) + (sb-unix:unix-file-kind (namestring directory)))
ok, looks like the same stuff as bug #499182 *** This bug has been marked as a duplicate of bug 499182 ***