Ticket #927: create-directory-and-parents.diff

File create-directory-and-parents.diff, 416 bytes (added by Mario Domenech Goulart, 12 years ago)
  • crunch.setup

     
    2525(when (setup-install-mode)
    2626  (let ((dir (make-pathname (installation-prefix) "include/chicken")))
    2727    (unless (file-exists? dir)
    28       (create-directory dir) )
     28      (create-directory dir 'with-parents) )
    2929    (copy-file "crunch.h" dir)))