diff options
author | dos-reis <gdr@axiomatics.org> | 2010-11-28 02:06:02 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2010-11-28 02:06:02 +0000 |
commit | ab86c48186a05391f1c1fbc3f90759cc0caff45b (patch) | |
tree | 0f091c5f71f3ffcfc35d72f161f9cfccef27b48f | |
parent | c5d08b45f11c6b2acd7284802c9ffa43e6c73d09 (diff) | |
download | open-axiom-ab86c48186a05391f1c1fbc3f90759cc0caff45b.tar.gz |
Work around GCL bug on Windows when invoking the linker.
-rw-r--r-- | src/lisp/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lisp/Makefile.in b/src/lisp/Makefile.in index 2df4a9b9..295c5eeb 100644 --- a/src/lisp/Makefile.in +++ b/src/lisp/Makefile.in @@ -96,7 +96,7 @@ ifeq (@axiom_lisp_flavor@,gcl) ' (compiler::*cc* (concatenate (quote string) ' \ ' $(GCL_LTCC) ' \ ' sys-cc)) ' \ - ' (compiler::*ld* $(GCL_LTLD))) ' \ + ' (compiler::*ld* (if (member :mingw32 *features*) compiler::*ld* $(GCL_LTLD)))) ' \ '(compiler::link (quote ($(FASLS))) "lisp$(EXEEXT)" ' \ ' (format nil "(progn (let ((*load-path* (cons ~S *load-path*))'\ ' (si::*load-types* ~S)))' \ |