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 select name='h' onchange='this.form.submit();'> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/guix-environment-container.sh
AgeCommit message (Expand)Author
2020-10-05environment: Turn "lo" up in network-less containers....Ludovic Courtès
2020-10-02environment: Provide /etc/hosts in containers without '--network'....Ludovic Courtès
2020-09-21environment: '--link-profile' uses ~/.guix-profile for environment variables....Ludovic Courtès
2020-06-20tests: Actually run 'tests/guix-environment-container.sh'....Ludovic Courtès
2019-10-03environment: '--container' honors '--preserve'....Ludovic Courtès
2019-08-17tests: Move 'guix environment -C --no-cwd' test where it belongs....Ludovic Courtès
2019-04-02environment: '-C' creates namespaces where the user is not root....Ludovic Courtès
2019-03-26environment: Create /etc/group in containers....Ludovic Courtès
2019-03-26environment: Use (gnu build accounts) for /etc/passwd handling....Ludovic Courtès