Skip to content

Commit

Permalink
execute correct ccl binary on win64
Browse files Browse the repository at this point in the history
  • Loading branch information
andreer committed May 20, 2010
1 parent d81af1e commit 52a7036
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions GNUmakefile
Expand Up @@ -247,7 +247,14 @@ endif


$(prefix)/$(sbcl)/lispbox-register.el: lisppath := (lispbox-list-to-filename (list (file-name-directory load-file-name) \"bin\" \"sbcl\"))

ifneq ($(os),Windows)
$(prefix)/$(clozurecl)/lispbox-register.el: lisppath := (lispbox-list-to-filename (list (file-name-directory load-file-name) \"$(CLOZURECL_SCRIPT)\"))
endif

ifeq ($(os),Windows)
$(prefix)/$(clozurecl)/lispbox-register.el: lisppath := (lispbox-list-to-filename (list (file-name-directory load-file-name) (if (getenv \"PROGRAMW6432\") \"wx86cl64.exe\" \"wx86cl.exe\")))
endif

$(prefix)/%/lispbox-register.el: $(lisp)
echo "(push (list '$(LISPBOX_LISP) (list $(lisppath))) slime-lisp-implementations)" > $@
Expand Down

0 comments on commit 52a7036

Please sign in to comment.