Changeset 5581


Ignore:
Timestamp:
Dec 4, 2006, 8:19:47 AM (18 years ago)
Author:
Gary Byers
Message:

Derive ccl-directory from pathname containing heap image.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/level-1/l1-pathnames.lisp

    r5021 r5581  
    618618    (if dirpath
    619619      (native-to-directory-pathname dirpath)
    620       (let* ((rpath (merge-pathnames
     620      (let* ((directory-containing-heap-image
     621              (make-pathname :directory (pathname-directory *heap-image-name*)))
     622             (rpath (merge-pathnames
    621623                     #+darwinppc-target "../Resources/ccl/"
    622624                     #+linux-target "Resources/ccl/"
    623                      (make-pathname
    624                       :directory
    625                       (pathname-directory (car *command-line-argument-list*))))))
     625                     directory-containing-heap-image)))
    626626        (or (probe-file rpath)
    627             (mac-default-directory))))))
     627            directory-containing-heap-image)))))
    628628
    629629
Note: See TracChangeset for help on using the changeset viewer.