From 07e242ec6eefa081c02e24d0ee1414f24670c372 Mon Sep 17 00:00:00 2001 From: Raymond Toy <toy.raymond@gmail.com> Date: Tue, 11 Nov 2014 22:35:02 -0800 Subject: [PATCH] Solaris uses ELF; make sure :elf is added to *features*. --- src/code/sunos-os.lisp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/code/sunos-os.lisp b/src/code/sunos-os.lisp index f3d17a60d..4971a82f5 100644 --- a/src/code/sunos-os.lisp +++ b/src/code/sunos-os.lisp @@ -22,7 +22,9 @@ (pushnew :sunos *features*) #+solaris -(register-lisp-feature :solaris) +(progn + (register-lisp-feature :solaris) + (register-lisp-feature :elf)) #+svr4 (register-lisp-feature :svr4) -- GitLab