diff --git a/INSTALL.txt b/INSTALL.txt index aefd49c43d..67233c52c6 100644 --- a/INSTALL.txt +++ b/INSTALL.txt @@ -204,8 +204,8 @@ Use `make both` to build both traditional Racket and Racket-on-Chez, where packages are updated documentation is built only once (using traditional Racket). -[*] For now, RacketCS requires the variant of Chez Scheme at - https://github.com/mflatt/ChezScheme +[*] For now, Racket-on-Chez requires the variant of Chez Scheme at + https://github.com/racket/ChezScheme Even More Instructions: Building Racket Pieces diff --git a/Makefile b/Makefile index fcb34c0350..03fdc3d222 100644 --- a/Makefile +++ b/Makefile @@ -265,7 +265,7 @@ SCHEME_SRC = DEFAULT_SCHEME_SRC = racket/src/build/ChezScheme MAKE_BUILD_SCHEME = y -CHEZ_SCHEME_REPO = https://github.com/mflatt/ChezScheme +CHEZ_SCHEME_REPO = https://github.com/racket/ChezScheme GIT_CLONE_ARGS_qq = -q --depth 1 # Altenative source for Chez Scheme repo, normally set by diff --git a/racket/src/README.txt b/racket/src/README.txt index d09bc3aae7..2155934640 100644 --- a/racket/src/README.txt +++ b/racket/src/README.txt @@ -63,9 +63,9 @@ Racket-on-Chez requires either a "ChezScheme" build checkout within the build directory or at at an alternate location specified by the `--enable-scheme=...` argument to `configure`. -For now, use the fork of Chez Scheme at +For now, use the patched version of Chez Scheme at - https://github.com/mflatt/ChezScheme + https://github.com/racket/ChezScheme We hope to eventually return to the current development version from diff --git a/racket/src/cs/README.txt b/racket/src/cs/README.txt index 86cb5c7ffc..78f1c9839a 100644 --- a/racket/src/cs/README.txt +++ b/racket/src/cs/README.txt @@ -12,7 +12,7 @@ organized into two layers: In addition, "bootstrap" implements a simulation of Chez Scheme in Racket that can be used to bootstrap Chez Scheme from source (i.e., -using an existing Racketbuild, but without an existing Chez Scheme +using an existing Racket build, but without an existing Chez Scheme build). diff --git a/racket/src/worksp/csbuild.rkt b/racket/src/worksp/csbuild.rkt index 90a7396e73..b11a19c615 100644 --- a/racket/src/worksp/csbuild.rkt +++ b/racket/src/worksp/csbuild.rkt @@ -98,7 +98,7 @@ (system*! "git" "pull" "origin" "master")))))] [else (unless (directory-exists? scheme-dir) - (clone "https://github.com/mflatt/ChezScheme" + (clone "https://github.com/racket/ChezScheme" scheme-dir git-clone-args)) (when pull?