~ salmonella-environment-setup (master) 6c1b95680e3c50ea42d24674928e06a24dab6a14


commit 6c1b95680e3c50ea42d24674928e06a24dab6a14
Author:     Mario Domenech Goulart <mario@parenteses.org>
AuthorDate: Mon Jan 1 12:29:52 2024 +0100
Commit:     Mario Domenech Goulart <mario@parenteses.org>
CommitDate: Mon Jan 1 12:29:54 2024 +0100

    chicken-utf-debugbuild.conf: Use work-dir instead of tmp-dir
    
    That's for compatibility with salmonella-run-publish, where that
    parameter was renamed in 50ae39593941e59f3dedd8fa9541d97af3d47404.

diff --git a/conf/chicken-utf-debugbuild.conf b/conf/chicken-utf-debugbuild.conf
index 035d28b..a0b5be9 100644
--- a/conf/chicken-utf-debugbuild.conf
+++ b/conf/chicken-utf-debugbuild.conf
@@ -16,7 +16,7 @@
 (list-eggs (lambda () (cons 'chicken-blob (%list-eggs))))
 
 (define utf-eggs-dir
-  (make-pathname (tmp-dir) "utf-eggs"))
+  (make-pathname (work-dir) "utf-eggs"))
 
 (eggs-source-dir utf-eggs-dir)
 
@@ -26,7 +26,7 @@
 ;; switch to the utf branch to build the actual CHICKEN for tests.
 (before-make-bootstrap-hook
  (lambda (chicken-core-dir)
-   (change-directory (tmp-dir))
+   (change-directory (work-dir))
    (system*
     (sprintf "svn co --username anonymous --password '' https://code.call-cc.org/svn/chicken-eggs/release/utf ~a"
              (qs utf-eggs-dir)))
Trap