X-Git-Url: https://git.rrq.au/?a=blobdiff_plain;f=incore.lsp;h=658972a367292a3334169cc30d98507e80a189f8;hb=refs%2Fheads%2Fmaster;hp=7203047c0be43aefb1b97d0fc694df61b2878ccf;hpb=322b0506f77ff60a4a4eabdc76fd45f84331fcc5;p=rrq%2Fnewlisp%2Fpacknl.git diff --git a/incore.lsp b/incore.lsp index 7203047..658972a 100644 --- a/incore.lsp +++ b/incore.lsp @@ -22,14 +22,18 @@ ;; This is a hashmap of loaded files (new Tree 'archives) -;; A copy of the executable -(define core:core (read-file "/proc/self/exe")) +;; A copy of the executable (file descriptor 3) +(define core:core + (letn ((FD 3) (SZ (seek FD)) (BUFFER (dup "" SZ))) + (seek FD 0) (read FD BUFFER SZ) BUFFER)) +(map delete '(FD SZ BUFFER GNU GNU)) (context 'archive) - (setf main nil) - -(constant 'AR "/usr/bin/ar" 'TAR "/bin/tar" 'FILE "/usr/bin/file") +(constant + 'AR "/usr/bin/ar" + 'TAR (exists file? '("/bin/tar" "/usr/bin/tar")) + 'FILE "/usr/bin/file" ) (define (tar-able PATH) (when (file? FILE)