Skip to content
Snippets Groups Projects
Commit 18ff5398 authored by garland's avatar garland
Browse files

Fixed so that it doesn't reference the INTERFACE package before

it gets created.
parent 3ef118f9
Branches
Tags
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/tools/clmcom.lisp,v 1.2 1993/01/28 14:08:30 wlott Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/tools/clmcom.lisp,v 1.3 1993/02/01 12:17:51 garland Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -44,11 +44,18 @@ ...@@ -44,11 +44,18 @@
(xt::build-toolkit-interface) (xt::build-toolkit-interface)
;;; Make sure that the INTERFACE package is defined before we start
;;; talking about it.
(with-compiler-log-file (with-compiler-log-file
("target:compile-motif.log") ("target:compile-motif.log")
(comf "target:interface/initial" :load t) (comf "target:interface/initial" :load t))
(with-compiler-log-file
("target:compile-motif.log")
(comf "target:interface/interface" :load t) (comf "target:interface/interface" :load t)
(comf "target:interface/inspect" :load t) (comf "target:interface/inspect" :load t)
;;
;; We don't want to fall into the Motif debugger while compiling. ;; We don't want to fall into the Motif debugger while compiling.
;; It may be that the motifd server hasn't been (re)compiled yet. ;; It may be that the motifd server hasn't been (re)compiled yet.
(let ((interface:*interface-style* :tty)) (let ((interface:*interface-style* :tty))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment