Changeset 7351 for trunk/ccl/cocoa-ide/builder-utilities.lisp
- Timestamp:
- Oct 4, 2007, 6:11:32 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ccl/cocoa-ide/builder-utilities.lisp
r7172 r7351 83 83 (defun recursive-copy-directory (source-path dest-path) 84 84 (ensure-directories-exist (ensure-directory-pathname dest-path)) 85 (let ((files (directory (path source-path "*") :directories nil :files t)) 86 (subdirs (directory (path source-path "*") :directories t :files nil))) 85 (let ((files (directory (path source-path "*.*") :directories nil :files t)) 86 (subdirs (directory (path source-path "*.*") :directories t :files nil))) 87 ; (format t "~%files = ~S" files) 88 ; (format t "~%subdirs = ~S~%" subdirs) 87 89 (dolist (f files) 88 90 (let* ((src-name (file-namestring f)) … … 95 97 (dest-dir (ensure-directory-pathname (path dest-path subdir-name)))) 96 98 (recursive-copy-directory d dest-dir))) 97 dest-path)) 99 dest-path 100 )) 98 101 99 102 ;;; WRITE-PKGINFO path package-type bundle-signature
Note: See TracChangeset
for help on using the changeset viewer.