Change 'ensure-directories-exist' to look for 'mkdir' in $PATH, not in /bin. --- maxima-5.36.1/lisp-utils/defsystem.lisp.orig 2014-11-22 16:21:30.000000000 -0500 +++ maxima-5.36.1/lisp-utils/defsystem.lisp 2015-05-25 21:53:31.223648483 -0400 @@ -4627,7 +4627,7 @@ (cmd (if (member :win32 *features*) (format nil "mkdir \"~a\"" (coerce (subst #\\ #\/ (coerce (namestring dir) 'list)) 'string)) - (format nil "/bin/mkdir -p ~S" (namestring dir))))) + (format nil "mkdir -p ~S" (namestring dir))))) (unless (directory dir) (lisp:system cmd)) ;; The second return value is supposed to be T if directories were ();'> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/uuid.scm
AgeCommit message (Expand)Author
2019-05-07uuid: 'fat-uuid->string' preserves leading zeros....Fixes <https://bugs.gnu.org/35582>. Reported by sirgazil <sirgazil@zoho.com>. Previously, leading zeros would be removed, leading to an "invalid" UUID: (uuid->string (uuid "00CA-050E" 'fat32)) ⇒ "CA-50E" (string->uuid "CA-50E" 'fat32) ⇒ #f * gnu/system/uuid.scm (fat-uuid->string): Pad digits with zeros. * tests/uuid.scm ("uuid, FAT32, leading zeros preserved"): New test. Ludovic Courtès