~ salmonella-environment-setup (master) 090f0cf3feebd444052fb693276feceadb9b25b4


commit 090f0cf3feebd444052fb693276feceadb9b25b4
Author:     Mario Domenech Goulart <mario@parenteses.org>
AuthorDate: Tue Jun 13 21:21:19 2023 +0200
Commit:     Mario Domenech Goulart <mario@parenteses.org>
CommitDate: Tue Jun 13 21:21:19 2023 +0200

    chicken-5-utf-debugbuild: Use chicken-core-dir, for consistency

diff --git a/conf/chicken-5-utf-debugbuild.conf b/conf/chicken-5-utf-debugbuild.conf
index 7481c3e..2bfe69d 100644
--- a/conf/chicken-5-utf-debugbuild.conf
+++ b/conf/chicken-5-utf-debugbuild.conf
@@ -20,18 +20,18 @@
 ;; Build the bootstrap compiler out of the utf-bootstrap branch then
 ;; switch to the utf branch to build the actual CHICKEN for tests.
 (before-make-bootstrap-hook
- (lambda (chicken-source-dir)
+ (lambda (chicken-core-dir)
    (change-directory (tmp-dir))
    (system*
     (sprintf "svn co --username anonymous --password '' https://code.call-cc.org/svn/chicken-eggs/release/utf ~a"
              (qs utf-eggs-dir)))
    (print "Switching to utf-bootstrap branch")
-   (change-directory chicken-source-dir)
+   (change-directory chicken-core-dir)
    (system* "git fetch origin utf-bootstrap:utf-bootstrap")
    (system* "git checkout utf-bootstrap")))
 
 (after-make-bootstrap-hook
- (lambda (chicken-source-dir)
+ (lambda (chicken-core-dir)
    (print "Switching to utf branch")
-   (change-directory chicken-source-dir)
+   (change-directory chicken-core-dir)
    (system* (sprintf "git checkout ~a" (chicken-core-branch "utf")))))
Trap