From 3083db6d9b980550b21f2c180642ba857ce751c5 Mon Sep 17 00:00:00 2001
From: emarsden <emarsden>
Date: Tue, 1 Jun 2004 16:11:29 +0000
Subject: [PATCH] Fix for EXT:LOAD-FOREIGN: LDEMULATION environment variable
 passed to linker via EXT:RUN-PROGRAM should be a keyword, not a string.

From Immanuel Litzroth.
---
 code/foreign.lisp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/code/foreign.lisp b/code/foreign.lisp
index d15e6a90c..e491f67af 100644
--- a/code/foreign.lisp
+++ b/code/foreign.lisp
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/foreign.lisp,v 1.46 2004/04/28 13:01:57 emarsden Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/foreign.lisp,v 1.47 2004/06/01 16:11:29 emarsden Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -732,7 +732,7 @@ environment passed to Lisp."
                         ;; via the LDEMULATION environment variable, or via the "-m" command-line
                         ;; option. Here we assume that LDEMULATION will be ignored by the platform
                         ;; linker on Linux/i386 platforms. 
-                        :env `(#+(and x86 linux) ("LDEMULATION" . "elf_i386") ,@env)
+                        :env `(#+(and x86 linux) (:ldemulation . "elf_i386") ,@env)
                         :input nil
                         :output error-output
                         :error :output)))
-- 
GitLab