From 0daa07d0723660c7b3bd2e85809dea6ca8f9ca26 Mon Sep 17 00:00:00 2001 From: Juanjo Garcia-Ripoll Date: Wed, 27 Feb 2013 17:39:24 +0100 Subject: [PATCH] SYSTEM must use the POSIX shell, which usually lives in /bin/sh. --- src/lsp/process.lsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lsp/process.lsp b/src/lsp/process.lsp index 48f2eee5e..1f69b05fe 100644 --- a/src/lsp/process.lsp +++ b/src/lsp/process.lsp @@ -32,7 +32,7 @@ ;;; handler -- this breaks some C libraries out there (OS X 32 bit). ;;; (defun system (cmd-string) - (let ((shell (getenv "SHELL")) + (let ((shell "/bin/sh") (option "-c")) #+windows (let ((comspec (getenv "ComSpec")))