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 is.form.submit();'> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/attr.scm
AgeCommit message (Expand)Author
2023-06-17gnu: Use target-hurd?, system-hurd? instead of hurd-target?, hurd-system?....* gnu/packages/hurd.scm (hurd-target?): Remove. (hurd-system?): Move to... * guix/utils.scm (system-hurd?): ...here. * gnu/packages/*: Update all users, removing (gnu packages hurd) include where now unused. Janneke Nieuwenhuizen
2021-09-14gnu: attr: Allow compilation on GNU/Hurd....* gnu/packages/attr.scm (attr)[arguments]: Add 'skip-linux-syscalls' phase when 'hurd-target?' returns true. Ludovic Courtès
2021-07-23gnu: attr: Update to 2.5.1....* gnu/packages/attr.scm (attr): Update to 2.5.1. [arguments]: Remove trailing #t. Marius Bakke